Browse Source

Sync version in more places and use -SNAPSHOT everywhere during development

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1868981 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_1_2
Dominik Stadler 4 years ago
parent
commit
04e85aa22d
3 changed files with 10 additions and 3 deletions
  1. 1
    1
      build.gradle
  2. 8
    1
      build.xml
  3. 1
    1
      osgi/build.xml

+ 1
- 1
build.gradle View File

// See https://github.com/melix/japicmp-gradle-plugin // See https://github.com/melix/japicmp-gradle-plugin
apply plugin: 'me.champeau.gradle.japicmp' apply plugin: 'me.champeau.gradle.japicmp'
version = '4.1.1-SNAPSHOT'
version = '4.1.2-SNAPSHOT'
ext { ext {
japicmpversion = '4.1.0' japicmpversion = '4.1.0'
} }

+ 8
- 1
build.xml View File



<description>The Apache POI project Ant build.</description> <description>The Apache POI project Ant build.</description>


<property name="version.id" value="4.1.2"/>
<property name="version.id" value="4.1.2-SNAPSHOT"/>
<property name="release.rc" value="RC1"/> <property name="release.rc" value="RC1"/>


<property environment="env"/> <property environment="env"/>
<fileset dir="."> <fileset dir=".">
<include name="build.gradle"/> <include name="build.gradle"/>
</fileset> </fileset>
</replaceregexp>
<replaceregexp
match="version.id&quot; value=&quot;[0-9.]+(?:-SNAPSHOT)?&quot;/>"
replace="version.id&quot; value=&quot;${version.id}&quot;/>">
<fileset dir=".">
<include name="osgi/build.xml"/>
</fileset>
</replaceregexp> </replaceregexp>
</target> </target>
</project> </project>

+ 1
- 1
osgi/build.xml View File



<!-- TODO Import these from the parent build file --> <!-- TODO Import these from the parent build file -->
<property name="repository.m2" value="http://repo1.maven.org"/> <property name="repository.m2" value="http://repo1.maven.org"/>
<property name="version.id" value="4.1.1-SNAPSHOT"/>
<property name="version.id" value="4.1.2-SNAPSHOT"/>
<property name="dist.dir" value="build/dist"/> <property name="dist.dir" value="build/dist"/>


<!-- jars in the /lib directory, see the fetch-bundle-jars target--> <!-- jars in the /lib directory, see the fetch-bundle-jars target-->

Loading…
Cancel
Save