Skip to content

Commit

Permalink
3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jogehring committed Aug 13, 2014
1 parent 785e88d commit df77e3a
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GraphView-Demos.iml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="com.jjoe64" external.system.module.version="3.1.3" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
Expand Down
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ buildscript {
}
}

def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
}

allprojects {
version = VERSION_NAME
group = GROUP

repositories {
mavenCentral()
}
Expand Down
17 changes: 16 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,19 @@
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# org.gradle.parallel=true

VERSION_NAME=3.1.3
VERSION_CODE=9
GROUP=com.jjoe64

POM_DESCRIPTION=Android Graph Library for creating zoomable and scrollable line and bar graphs.
POM_URL=http://android-graphview.org/
POM_SCM_URL=https://github.com/jjoe64/GraphView
POM_SCM_CONNECTION=scm:git@github.com:jjoe64/GraphView.git
POM_SCM_DEV_CONNECTION=scm:git@github.com:jjoe64/GraphView.git
POM_LICENCE_NAME=GNU Lesser General Public License (LGPL)
POM_LICENCE_URL=http://www.gnu.org/licenses/lgpl.html
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=jjoe64
POM_DEVELOPER_NAME=Jonas Gehring
3 changes: 2 additions & 1 deletion graphviewdemos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ dependencies {
compile 'com.android.support:appcompat-v7:20.+'
compile 'com.android.support:support-v4:20.+'
//compile files('libs/GraphView-3.1.2.jar')
compile project(':GraphView')
//compile project(':GraphView')
compile 'com.jjoe64:graphview:3.1.3'
}
4 changes: 2 additions & 2 deletions graphviewdemos/graphviewdemos.iml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="GraphView-Demos" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="com.jjoe64" external.system.module.version="3.1.3" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android" name="Android">
<configuration>
Expand Down Expand Up @@ -62,9 +62,9 @@
<orderEntry type="jdk" jdkName="Android API 20 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" name="appcompat-v7-20.0.0" level="project" />
<orderEntry type="library" exported="" name="graphview-3.1.3" level="project" />
<orderEntry type="library" exported="" name="support-annotations-20.0.0" level="project" />
<orderEntry type="library" exported="" name="support-v4-20.0.0" level="project" />
<orderEntry type="module" module-name="GraphView" exported="" />
</component>
</module>

0 comments on commit df77e3a

Please sign in to comment.