-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
executable file
·80 lines (78 loc) · 2.62 KB
/
pom.xml
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
70
71
72
73
74
75
76
77
78
79
80
<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.getbridge.bridge</groupId>
<artifactId>bridge-java</artifactId>
<packaging>pom</packaging>
<version>0.0.1</version>
<name>Bridge for Java - Parent Project</name>
<developers>
<developer>
<id>sridatta</id>
<name>Sridatta Thatipamala</name>
<email>[email protected]</email>
<roles>
<role>developer</role>
</roles>
<timezone>-8</timezone>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>http://mit-license.org/</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>bridge-java-core</module>
<module>bridge-java-examples</module>
<module>bridge-java-itests</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<scm>
<url>http://git.flotype.com/bridge-java</url>
<connection>scm:git:https://github.com/getbridge/bridge-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]:getbridge/bridge-java.git</developerConnection>
</scm>
<description>Maven multi-module project containing Bridge for Java core library, examples and tests.
Bridge enables cross-language RPC for interserver and client-server communication.</description>
</project>