Skip to content

Commit 987e361

Browse files
committed
Added multi module pom file.
1 parent 16171bf commit 987e361

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

pom.xml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>eu.chargetime.ocpp</groupId>
8+
<artifactId>all</artifactId>
9+
<version>0.1-alpha</version>
10+
<packaging>pom</packaging>
11+
12+
<name>Java-OCA-OCPP</name>
13+
<description>Implementation of Open Charge-Point Protocol common library.</description>
14+
<url>https://github.com/ChargeTimeEU/Java-OCA-OCPP</url>
15+
16+
<licenses>
17+
<license>
18+
<name>MIT License</name>
19+
<url>http://www.opensource.org/licenses/mit-license.php</url>
20+
</license>
21+
</licenses>
22+
23+
<developers>
24+
<developer>
25+
<name>Thomas Volden</name>
26+
<email>[email protected]</email>
27+
<organization>chargetime.eu</organization>
28+
<organizationUrl>http://www.chargetime.eu</organizationUrl>
29+
</developer>
30+
</developers>
31+
32+
<scm>
33+
<connection>scm:git:git://github.com/ChargeTimeEU/Java-OCA-OCPP.git</connection>
34+
<developerConnection>scm:git:ssh://github.com:ChargeTimeEU/Java-OCA-OCPP.git</developerConnection>
35+
<url>https://github.com/ChargeTimeEU/Java-OCA-OCPP.git</url>
36+
</scm>
37+
38+
<modules>
39+
<module>ocpp-common</module>
40+
<module>ocpp-v1_6</module>
41+
</modules>
42+
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<configuration>
49+
<source>1.8</source>
50+
<target>1.8</target>
51+
</configuration>
52+
<version>3.5.1</version>
53+
</plugin>
54+
</plugins>
55+
</build>
56+
57+
</project>

0 commit comments

Comments
 (0)