Skip to content

Commit

Permalink
Clean up versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dickschoeller committed Aug 10, 2017
1 parent 7f18b07 commit df1ddc6
Show file tree
Hide file tree
Showing 23 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ to reset the database from the files.
directory
* Clone this repository and cd into it
* From the top 'mvn clean install'
* java -jar gedbrowser/target/gedbrowser-1.2.2-SNAPSHOT.jar or run from your IDE
* java -jar gedbrowser/target/gedbrowser-1.2.2.jar or run from your IDE

The location of gedbrowser.home defaults to /var/lib/gedbrowser. However that
can be adjusted in the file application.yml. When running in Docker the data
Expand Down
2 changes: 1 addition & 1 deletion gedbrowser-analytics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion gedbrowser-dao/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion gedbrowser-datamodel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public abstract class GedObject extends AbstractFinderObject {
/** */
protected static final String DEFAULT_IDX_NAME = "";
/** */
public static final String VERSION = "1.2.2-SNAPSHOT";
public static final String VERSION = "1.2.2";
/** */
protected static final String DEFAULT_SURNAME = "";
/** */
Expand Down
2 changes: 1 addition & 1 deletion gedbrowser-geographics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion gedbrowser-mongo-dao/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion gedbrowser-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion gedbrowser-renderer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions gedbrowser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<parent>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<relativePath>..</relativePath>
</parent>
Expand Down Expand Up @@ -352,7 +352,7 @@
</goals>
<configuration>
<imageTags>
<imageTag>snapshot</imageTag>
<imageTag>latest</imageTag>
</imageTags>
<imageName>${docker.image.prefix}/${project.artifactId}:${docker.image.tag}</imageName>
<dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
Expand Down
2 changes: 1 addition & 1 deletion gedbrowser/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM java:8
VOLUME /tmp
ADD gedbrowser-1.2.2-SNAPSHOT.jar gedbrowser.jar
ADD gedbrowser-1.2.2.jar gedbrowser.jar
EXPOSE 8080
EXPOSE 8081
ENV spring.data.mongodb.host=mongo
Expand Down
2 changes: 1 addition & 1 deletion gedbrowser/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
| (_| | __/ (_| | |_) | | | (_) \ V V /\__ \ __/ |
\__, |\___|\__,_|_.__/|_| \___/ \_/\_/ |___/\___|_|
__/ |
|___/ gedbrowser-1.2.2-SNAPSHOT
|___/ gedbrowser-1.2.2
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void testApplicationInfoName() {
@Test
public void testApplicationInfoVersion() {
assertEquals("Version mismatch",
"1.2.2-SNAPSHOT", appInfo.getVersion());
"1.2.2", appInfo.getVersion());
}

/** */
Expand Down
2 changes: 1 addition & 1 deletion geoservice-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion geoservice-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion geoservice-persistence-mongo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion geoservice-persistence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions geoservice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<parent>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<groupId>org.schoellerfamily.gedbrowser</groupId>
<relativePath>..</relativePath>
</parent>
Expand Down Expand Up @@ -154,7 +154,7 @@
</goals>
<configuration>
<imageTags>
<imageTag>snapshot</imageTag>
<imageTag>latest</imageTag>
</imageTags>
<imageName>${docker.image.prefix}/${project.artifactId}:${docker.image.tag}</imageName>
<dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
Expand Down
2 changes: 1 addition & 1 deletion geoservice/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM java:8
VOLUME /tmp
ADD geoservice-1.2.2-SNAPSHOT.jar geoservice.jar
ADD geoservice-1.2.2.jar geoservice.jar
EXPOSE 8080
EXPOSE 8081
ENV spring.data.mongodb.host=mongo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public final class ApplicationInfo {
/** */
private static final String NAME = "gedbrowser-geoservice";
/** */
private static final String VERSION = "1.2.2-SNAPSHOT";
private static final String VERSION = "1.2.2";
/** */
private static final String APPLICATION_URL =
"https://github.com/dickschoeller/gedbrowser";
Expand Down
2 changes: 1 addition & 1 deletion geoservice/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
| (_| | __/ (_) \__ \ __/ | \ V /| | (_| __/
\__, |\___|\___/|___/\___|_| \_/ |_|\___\___|
__/ |
|___/ gedbrowser-geoservice-1.2.2-SNAPSHOT
|___/ gedbrowser-geoservice-1.2.2
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ public void testApplicationInfoName() {
@Test
public void testApplicationInfoVersion() {
assertEquals("Version mismatch",
"1.2.2-SNAPSHOT", appInfo.getVersion());
"1.2.2", appInfo.getVersion());
}
}
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>org.schoellerfamily.gedbrowser</groupId>
<artifactId>gedbrowser-top</artifactId>
<version>1.2.2-SNAPSHOT</version>
<version>1.2.2</version>
<packaging>pom</packaging>
<url>http://www.schoellerfamily.org</url>

Expand Down Expand Up @@ -50,7 +50,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<gedbrowser.version>1.2.2-SNAPSHOT</gedbrowser.version>
<gedbrowser.version>1.2.2</gedbrowser.version>

<spring-boot.version>1.5.6.RELEASE</spring-boot.version>
<spring-boot-maven.version>1.5.6.RELEASE</spring-boot-maven.version>
Expand Down Expand Up @@ -96,7 +96,7 @@

<docker-plugin.version>1.0.0</docker-plugin.version>
<docker.image.prefix>dickschoeller</docker.image.prefix>
<docker.image.tag>snapshot</docker.image.tag>
<docker.image.tag>1.2.2</docker.image.tag>

<config-dir>${project.basedir}/config</config-dir>
<server.port>8080</server.port>
Expand Down

0 comments on commit df1ddc6

Please sign in to comment.