mirror of
https://github.com/frode-carlsen/cron.git
synced 2025-12-07 06:20:53 +03:00
setting version 1.4
This commit is contained in:
@@ -4,12 +4,12 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>fc.cron</groupId>
|
<groupId>fc.cron</groupId>
|
||||||
<artifactId>cron</artifactId>
|
<artifactId>cron</artifactId>
|
||||||
<version>1.4-SNAPSHOT</version>
|
<version>1.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>fc.cron</groupId>
|
<groupId>fc.cron</groupId>
|
||||||
<artifactId>cron-java8</artifactId>
|
<artifactId>cron-java8</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>1.4-SNAPSHOT</version>
|
<version>1.4</version>
|
||||||
<name>cron-java8</name>
|
<name>cron-java8</name>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|||||||
30
java8/pom.xml.versionsBackup
Normal file
30
java8/pom.xml.versionsBackup
Normal 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>
|
||||||
@@ -6,12 +6,12 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>fc.cron</groupId>
|
<groupId>fc.cron</groupId>
|
||||||
<artifactId>cron</artifactId>
|
<artifactId>cron</artifactId>
|
||||||
<version>1.4-SNAPSHOT</version>
|
<version>1.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>fc.cron</groupId>
|
<groupId>fc.cron</groupId>
|
||||||
<artifactId>cron-jodatime</artifactId>
|
<artifactId>cron-jodatime</artifactId>
|
||||||
<version>1.4-SNAPSHOT</version>
|
<version>1.4</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>cron-jodatime</name>
|
<name>cron-jodatime</name>
|
||||||
|
|
||||||
|
|||||||
48
jodatime/pom.xml.versionsBackup
Normal file
48
jodatime/pom.xml.versionsBackup
Normal 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
13
pom.xml
@@ -5,21 +5,10 @@
|
|||||||
<groupId>fc.cron</groupId>
|
<groupId>fc.cron</groupId>
|
||||||
<artifactId>cron</artifactId>
|
<artifactId>cron</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>1.4-SNAPSHOT</version>
|
<version>1.4</version>
|
||||||
<name>cron</name>
|
<name>cron</name>
|
||||||
<url>https://github.com/frode-carlsen/cron</url>
|
<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>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>Apache License Version 2.0</name>
|
<name>Apache License Version 2.0</name>
|
||||||
|
|||||||
86
pom.xml.versionsBackup
Normal file
86
pom.xml.versionsBackup
Normal 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>
|
||||||
Reference in New Issue
Block a user