setting version 1.4

This commit is contained in:
Frode Carlsen 2017-03-02 07:22:02 +01:00
parent 41ee776a90
commit 15dc72b08b
6 changed files with 169 additions and 16 deletions

View File

@ -4,12 +4,12 @@
<parent>
<groupId>fc.cron</groupId>
<artifactId>cron</artifactId>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
</parent>
<groupId>fc.cron</groupId>
<artifactId>cron-java8</artifactId>
<packaging>jar</packaging>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<name>cron-java8</name>
<build>

View File

@ -0,0 +1,30 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fc.cron</groupId>
<artifactId>cron</artifactId>
<version>1.4-SNAPSHOT</version>
</parent>
<groupId>fc.cron</groupId>
<artifactId>cron-java8</artifactId>
<packaging>jar</packaging>
<version>1.4-SNAPSHOT</version>
<name>cron-java8</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<fork>true</fork>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -6,12 +6,12 @@
<parent>
<groupId>fc.cron</groupId>
<artifactId>cron</artifactId>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
</parent>
<groupId>fc.cron</groupId>
<artifactId>cron-jodatime</artifactId>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<packaging>jar</packaging>
<name>cron-jodatime</name>

View File

@ -0,0 +1,48 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fc.cron</groupId>
<artifactId>cron</artifactId>
<version>1.4-SNAPSHOT</version>
</parent>
<groupId>fc.cron</groupId>
<artifactId>cron-jodatime</artifactId>
<version>1.4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>cron-jodatime</name>
<dependencies>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.7</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.6.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<fork>true</fork>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>

13
pom.xml
View File

@ -5,20 +5,9 @@
<groupId>fc.cron</groupId>
<artifactId>cron</artifactId>
<packaging>pom</packaging>
<version>1.4-SNAPSHOT</version>
<version>1.4</version>
<name>cron</name>
<url>https://github.com/frode-carlsen/cron</url>
<issueManagement>
<url>https://github.com/frode-carlsen/cron/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<scm>
<url>https://github.com/frode-carlsen/cron</url>
<connection>scm:git:git://github.com/frode-carlsen/cron.git</connection>
<developerConnection>scm:git:git@github.com:frode-carlsen/cron.git</developerConnection>
</scm>
<licenses>
<license>

86
pom.xml.versionsBackup Normal file
View File

@ -0,0 +1,86 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fc.cron</groupId>
<artifactId>cron</artifactId>
<packaging>pom</packaging>
<version>1.4-SNAPSHOT</version>
<name>cron</name>
<url>https://github.com/frode-carlsen/cron</url>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<modules>
<module>java8</module>
<module>jodatime</module>
</modules>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
</project>