-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
69 lines (61 loc) · 2.09 KB
/
Copy pathpom.xml
File metadata and controls
69 lines (61 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<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>com.callidusrobotics.droptables</groupId>
<artifactId>droptables-project</artifactId>
<version>0.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>DropTables</name>
<modules>
<module>service</module>
</modules>
<properties>
<project.mainClass>com.callidusrobotics.droptables.DropTablesApp</project.mainClass>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.jdkVersion>1.7</project.build.jdkVersion>
<project.releaseRepo>file://~/.m2/repository/</project.releaseRepo>
<project.snapshotRepo>file://~/.m2/repository/</project.snapshotRepo>
</properties>
<distributionManagement>
<repository>
<id>releases</id>
<url>${project.releaseRepo}</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<url>${project.snapshotRepo}</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:git@github.com:R-Gerard/DropTables.git</connection>
<developerConnection>scm:git:git@github.com:R-Gerard/DropTables.git</developerConnection>
<url>http://github.com/R-Gerard/DropTables</url>
</scm>
<licenses>
<license>
<name>GNU General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<organization>
<name>Callidus Robotics</name>
<url>http://github.com/r-gerard</url>
</organization>
<developers>
<developer>
<id>r-gerard</id>
<name>Rusty Gerard</name>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
</project>