forked from mulesoft-labs/raml-for-jax-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
70 lines (68 loc) · 1.91 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.raml</groupId>
<artifactId>com.mulesoft.jaxrs-raml.all-clubos</artifactId>
<version>1.3.5</version>
<packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<!-- <module>eclipse</module> -->
<module>jaxrs-to-raml</module>
<module>raml-to-jaxrs</module>
</modules>
<name>RAML to JAXRS</name>
<description>RAML to JAXRS</description>
<scm>
<url>https://github.com/mulesoft/raml-for-jax-rs.git</url>
<connection>https://github.com/mulesoft/raml-for-jax-rs.git</connection>
<developerConnection>Pavel Petrochenko([email protected])</developerConnection>
</scm>
<organization>
<name>Mulesoft</name>
<url>http://mulesoft.com</url>
</organization>
<url>https://github.com/mulesoft/raml-for-jax-rs</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Pavel Petrochenko</name>
<email>[email protected]</email>
<organization>Mulesoft</organization>
<organizationUrl>http://mulesoft.com</organizationUrl>
</developer>
</developers>
</project>