FFFF Checkpoint commit · Deathnerd/JavaTwig@fcaf512 · GitHub
[go: up one dir, main page]

Skip to content

Commit fcaf512

Browse files
committed
Checkpoint commit
0 parents  commit fcaf512

File tree

12 files changed

+627
-0
lines changed

12 files changed

+627
-0
lines changed

.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Java template
3+
*.class
4+
5+
# BlueJ files
6+
*.ctxt
7+
8+
# Mobile Tools for Java (J2ME)
9+
.mtj.tmp/
10+
11+
# Package Files #
12+
*.jar
13+
*.war
14+
*.ear
15+
16+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
17+
hs_err_pid*
18+
### Maven template
19+
target/
20+
pom.xml.tag
21+
pom.xml.releaseBackup
22+
pom.xml.versionsBackup
23+
pom.xml.next
24+
release.properties
25+
dependency-reduced-pom.xml
26+
buildNumber.properties
27+
.mvn/timing.properties
28+
29+
# Exclude maven wrapper
30+
!/.mvn/wrapper/maven-wrapper.jar
31+
### JetBrains template
32+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
33+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
34+
35+
.idea/
36+
37+
## File-based project format:
38+
*.iws
39+
40+
## Plugin-specific files:
41+
42+
# IntelliJ
43+
/out/
44+
45+
# mpeltonen/sbt-idea plugin
46+
.idea_modules/
47+
48+
# JIRA plugin
49+
atlassian-ide-plugin.xml
50+
51+
# Crashlytics plugin (for Android Studio and IntelliJ)
52+
com_crashlytics_export_strings.xml
53+
crashlytics.properties
54+
crashlytics-build.properties
55+
fabric.properties
56+

Twig.iml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
4+
<output url="file://$MODULE_DIR$/target/classes" />
5+
<output-test url="file://$MODULE_DIR$/target/test-classes" />
6+
<content url="file://$MODULE_DIR$">
7+
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
8+
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
9+
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
10+
<excludeFolder url="file://$MODULE_DIR$/target" />
11+
</content>
12+
<orderEntry type="inheritedJdk" />
13+
<orderEntry type="sourceFolder" forTests="false" />
14+
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.11" level="project" />
15+
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
16+
<orderEntry type="library" name="Maven: joda-time:joda-time:2.9" level="project" />
17+
<orderEntry type="library" name="Maven: log4j:log4j:1.2.17" level="project" />
18+
<orderEntry type="library" name="Maven: org.jetbrains:annotations:15.0" level="project" />
19+
<orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.5" level="project" />
20+
</component>
21+
</module>

pom.xml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.deathnerd.JavaTwig</groupId>
5+
<artifactId>Twig</artifactId>
6+
7+
<!-- output to jar format -->
8+
<packaging>jar</packaging>
9+
10+
<version>1.0-SNAPSHOT</version>
11+
<name>Twig</name>
12+
<url>http://maven.apache.org</url>
13+
14+
<properties>
15+
<jdk.version>1.8</jdk.version>
16+
<jodatime.version>2.9</jodatime.version>
17+
<junit.version>4.11</junit.version>
18+
<log4j.version>1.2.17</log4j.version>
19+
</properties>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>junit</groupId>
24+
<artifactId>junit</artifactId>
25+
<version>${junit.version}</version>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>joda-time</groupId>
30+
<artifactId>joda-time</artifactId>
31+
<version>${jodatime.version}</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>log4j</groupId>
35+
<artifactId>log4j</artifactId>
36+
<version>${log4j.version}</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.jetbrains</groupId>
40+
<artifactId>annotations</artifactId>
41+
<version>15.0</version>
42+
</dependency>
43+
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
44+
<dependency>
45+
<groupId>org.apache.commons</groupId>
46+
<artifactId>commons-lang3</artifactId>
47+
<version>3.5</version>
48+
</dependency>
49+
</dependencies>
50+
51+
<build>
52+
<finalName>javatwig</finalName>
53+
54+
<plugins>
55+
<!-- Set a JDK compiler level -->
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-compiler-plugin</artifactId>
59+
<version>3.1</version>
60+
<configuration>
61+
<source>${jdk.version}</source>
62+
<target>${jdk.version}</target>
63+
</configuration>
64+
</plugin>
65+
66+
<!-- Make this jar executable -->
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-jar-plugin</artifactId>
70+
<configuration>
71+
<!-- Don't include log4j.properties file in the jar -->
72+
<excludes>
73+
<exclude>**/log4j.properties</exclude>
74+
</excludes>
75+
<archive>
76+
<manifest>
77+
<addClassPath>true</addClassPath>
78+
</manifest>
79+
</archive>
80+
</configuration>
81+
</plugin>
82+
</plugins>
83+
</build>
84+
</project>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package com.deathnerd.JavaTwig;
2+
3+
/**
4+
* Created by Wes Gilleland on 1/11/2017.
5+
*/
6+
public class LogicException extends Exception {
7+
public LogicException(String s) {
8+
super(s);
9+
}
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package com.deathnerd.JavaTwig;
2+
3+
/**
4+
* Hello world!
5+
*
6+
*/
7+
public class Twig
8+
{
9+
10+
}

0 commit comments

Comments
 (0)
0