forked from srctips/time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jason Taylor
committed
Jun 20, 2015
1 parent
d66c2da
commit bd63cb5
Showing
5 changed files
with
62 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ pom.xml.next | |
release.properties | ||
dependency-reduced-pom.xml | ||
buildNumber.properties | ||
.idea | ||
*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
<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>training.time-tracker</groupId> | ||
<artifactId>time-tracker-core</artifactId> | ||
<packaging>jar</packaging> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<name>Time Tracker (Core)</name> | ||
|
||
|
||
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>training.time-tracker</groupId> | ||
<artifactId>time-tracker-parent</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>training.time-tracker</groupId> | ||
<artifactId>time-tracker-core</artifactId> | ||
<packaging>jar</packaging> | ||
<name>Time Tracker (Core)</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<version>${spring.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
8 changes: 8 additions & 0 deletions
8
core/src/main/java/pro/jtaylor/timetraker/core/TrackerCoreConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package pro.jtaylor.timetraker.core; | ||
|
||
/** | ||
* Created by Jason on 6/19/2015. | ||
*/ | ||
public class TrackerCoreConfig { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
<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>training.time-tracker</groupId> | ||
<artifactId>time-tracker-parent</artifactId> | ||
<packaging>pom</packaging> | ||
<version>0.1.1-SNAPSHOT</version> | ||
<name>Time Tracker (Parent)</name> | ||
<description> | ||
This is a simple Maven / Java web project. | ||
</description> | ||
<inceptionYear>2015</inceptionYear> | ||
<url>http://maven.training/</url> | ||
|
||
<modules> | ||
<module>core</module> | ||
<module>web</module> | ||
</modules> | ||
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>training.time-tracker</groupId> | ||
<artifactId>time-tracker-parent</artifactId> | ||
<packaging>pom</packaging> | ||
<version>0.1.1-SNAPSHOT</version> | ||
<name>Time Tracker (Parent)</name> | ||
<description> | ||
This is a simple Maven / Java web project. | ||
</description> | ||
<inceptionYear>2015</inceptionYear> | ||
<url>http://maven.training/</url> | ||
|
||
<properties> | ||
<spring.version>4.1.6.RELEASE</spring.version> | ||
<java.version>1.8</java.version> | ||
</properties> | ||
|
||
<modules> | ||
<module>core</module> | ||
<module>web</module> | ||
</modules> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<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>training.time-tracker</groupId> | ||
<artifactId>time-tracker-web</artifactId> | ||
<packaging>war</packaging> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<name>Time Tracker (Web)</name> | ||
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>training.time-tracker</groupId> | ||
<artifactId>time-tracker-web</artifactId> | ||
<packaging>war</packaging> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<name>Time Tracker (Web)</name> | ||
|
||
|
||
</project> |