-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpom.xml
100 lines (91 loc) · 2.67 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version='1.0' encoding='UTF-8'?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.californium</groupId>
<artifactId>cf-bom</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
<artifactId>tools</artifactId>
<packaging>pom</packaging>
<name>Californium (Cf) Tools</name>
<description>CoAP tools</description>
<scm>
<developerConnection>scm:git:ssh://[email protected]/eclipse-californium/californium.tools.git</developerConnection>
<url>https://github.com/eclipse-californium/californium.tools</url>
<tag>HEAD</tag>
</scm>
<repositories>
<repository>
<id>repo.eclipse.org</id>
<name>Californium Repository - Releases</name>
<url>https://repo.eclipse.org/content/repositories/californium-releases/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>eclipse_snapshots</id>
<name>Eclipse Snapshots</name>
<url>https://repo.eclipse.org/content/repositories/californium-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<modules>
<module>cf-browser</module>
<module>cf-client</module>
<module>cf-rd</module>
<module>cf-jmeter-plugin</module>
</modules>
<properties>
<!--
this property prevents the Nexus Staging Maven Plugin to
deploy this module's artifacts to Maven Central's staging repo
-->
<skipStaging>true</skipStaging>
<!--
never create JavaDoc for this module
-->
<maven.javadoc.skip>true</maven.javadoc.skip>
<animal.sniffer.skip>true</animal.sniffer.skip>
<revapi.skip>true</revapi.skip>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>californium-legal</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-installed</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
</artifactItem>
</artifactItems>
<outputDirectory>../run/</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>