Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
4.10 final in version, non-snapshot staging
  • Loading branch information
dsaff committed Sep 29, 2011
1 parent 45a4464 commit 38c12ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions build.xml
Expand Up @@ -269,7 +269,7 @@
url="@{url}" repo.id="@{repo.id}" />

<if>
<equals arg1="${is.snapshot}" arg2="false" />
<equals arg1="@{is.snapshot}" arg2="false" />
<then>
<push.maven.jar jar="${m.sources.jar}" pom="${m.pom}"
url="@{url}" repo.id="@{repo.id}">
Expand All @@ -292,10 +292,12 @@

<push.maven.artifact artifactId="junit"
url="${stage.url}"
repo.id="${stage.repo.id}" />
repo.id="${stage.repo.id}"
is.snapshot="false" />
<push.maven.artifact artifactId="junit-dep"
url="${stage.url}"
repo.id="${stage.repo.id}" />
repo.id="${stage.repo.id}"
is.snapshot="false" />
</target>

<target name="snapshot.maven" depends="all.maven.jars">
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/junit/runner/Version.java
Expand Up @@ -9,7 +9,7 @@ private Version() {
}

public static String id() {
return "4.10-SNAPSHOT";
return "4.10";
}

public static void main(String[] args) {
Expand Down

0 comments on commit 38c12ee

Please sign in to comment.