Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
javatlacati committed Jan 2, 2020
1 parent 3f4bf9e commit a767197
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 deletions.
7 changes: 3 additions & 4 deletions jcalendar-demo-testing-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
<parent>
<artifactId>jcalendar-swing</artifactId>
<groupId>com.github.javatlacati</groupId>
<version>1.3.5</version>
<version>1.3.9</version>
</parent>

<groupId>com.github.javatlacati</groupId>
<artifactId>jcalendar-demo-testing-api</artifactId>
<version>1.0-SNAPSHOT</version>

<name>jcalendar-demo-testing-api</name>
<!-- FIXME change it to the project's website -->
Expand Down Expand Up @@ -38,13 +37,13 @@
<dependency>
<groupId>com.github.javatlacati</groupId>
<artifactId>jcalendar-demo</artifactId>
<version>1.3.5</version>
<version>1.3.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.javatlacati</groupId>
<artifactId>jcalendar</artifactId>
<version>1.3.5</version>
<version>1.3.9</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void checkAboutFromMenu() {
Assert.assertEquals("Properties", demoPageObject.getTitleOfPropertiesPanel());

demoPageObject.clickAboutMenu();
String version = "1.3.5";
String version = "1.3.9";
String aboutText = new StringBuilder("JCalendar Demo\nVersion ")
.append(version)
.append("\nKai Toedter\n[email protected]\nwww.toedter.com")
Expand Down
4 changes: 2 additions & 2 deletions jcalendar-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.javatlacati</groupId>
<artifactId>jcalendar-swing</artifactId>
<version>1.3.5</version>
<version>1.3.9</version>
</parent>

<properties>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>com.github.javatlacati</groupId>
<artifactId>jcalendar</artifactId>
<version>1.3.5</version>
<version>1.3.9</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class AboutAction extends AbstractAction {

private static final long serialVersionUID = -5204865941545323214L;
private final JCalendarDemo demo;
private static final String VERSION = "1.3.5";
private static final String VERSION = "1.3.9";
private static final String ABOUT_TEXT = new StringBuilder("JCalendar Demo\nVersion ").append(VERSION).append("\n\nKai Toedter\n[email protected]\nwww.toedter.com").toString();

/**
Expand Down
14 changes: 10 additions & 4 deletions jcalendar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.javatlacati</groupId>
<artifactId>jcalendar-swing</artifactId>
<version>1.3.5</version>
<version>1.3.9</version>
</parent>
<artifactId>jcalendar</artifactId>
<packaging>jar</packaging>
Expand All @@ -19,6 +19,12 @@
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.23.4</version>
<scope>test</scope>
</dependency> -->
</dependencies>

<build>
Expand Down Expand Up @@ -54,7 +60,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0-beta-1</version>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-java</id>
Expand All @@ -74,7 +80,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<version>3.2.0</version>
<configuration>
<archive>
<manifest>
Expand Down Expand Up @@ -165,7 +171,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.0-alpha-4</version>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.javatlacati</groupId>
<artifactId>jcalendar-swing</artifactId>
<version>1.3.5</version>
<version>1.3.9</version>
<packaging>pom</packaging>
<name>JCalendar swing</name>
<description>The JCalendar Component - New Features and Bug Fixes</description>
Expand Down

0 comments on commit a767197

Please sign in to comment.