Skip to content

Commit faed06d

Browse files
committed
turned into maven project
1 parent 2289a9b commit faed06d

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target

pom.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>VerbalExpressions</groupId>
6+
<artifactId>JavaVerbalExpressions</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>JavaVerbalExpressions</name>
11+
<url>https://github.com/VerbalExpressions/JavaVerbalExpressions</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
18+
<scm>
19+
<connection>[email protected]:VerbalExpressions/JavaVerbalExpressions.git</connection>
20+
</scm>
21+
<build>
22+
<plugins>
23+
<plugin>
24+
<artifactId>maven-compiler-plugin</artifactId>
25+
<version>3.1</version>
26+
<inherited>true</inherited>
27+
<configuration>
28+
<source>1.6</source>
29+
<target>1.6</target>
30+
<encoding>utf-8</encoding>
31+
</configuration>
32+
</plugin>
33+
</plugins>
34+
</build>
35+
</project>
File renamed without changes.

0 commit comments

Comments
 (0)