Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit c3f5389

Browse files
author
shubay
committed
Add an Ant target for creating the source jar.
1 parent 08ad632 commit c3f5389

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

build-src/build.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<pathelement location="${servlet-api.jar}"/>
5959
</classpath>
6060
</javac>
61-
<jar destfile="${build}/datasource.jar"
61+
<jar destfile="${build}/visualization-datasource-1.0.1.jar"
6262
basedir="${build.class.main}"/>
6363
</target>
6464

@@ -122,6 +122,12 @@
122122
</junit>
123123
</target>
124124

125+
<!-- Jar the sources. -->
126+
<target name="source-jar">
127+
<jar destfile="${build}/visualization-datasource-1.0.1-src.jar"
128+
basedir="${src}/main/java" />
129+
</target>
130+
125131
<target name="build" depends="datasource"/>
126132

127133
<target name="all" depends="clean,build,example,test"/>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<groupId>com.google.visualization</groupId>
1111
<artifactId>visualization-datasource</artifactId>
1212
<name>Google Visualization Data Source Library</name>
13-
<version>1.0</version>
13+
<version>1.0.1</version>
1414
<description>This library makes it easy to implement a Visualization data source so that you can
1515
easily chart or visualize your data from any of your data stores.
1616
The library implements the Google Visualization API wire protocol and query language.

0 commit comments

Comments
 (0)