source: ip/pom.xml@ 33

Last change on this file since 33 was 33, checked in by bart, 3 years ago

Major update. Changes in json serialization, maven dependencies and BOA. Fix in stand-alone runner.

File size: 4.7 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <groupId>geniusweb</groupId>
7 <artifactId>ip</artifactId>
8 <version>2.0.0</version> <!-- must equal ${geniusweb.version} -->
9 <packaging>jar</packaging>
10
11
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <maven.compiler.target>1.8</maven.compiler.target>
15 <maven.compiler.source>1.8</maven.compiler.source>
16 <basedir>.</basedir>
17 <passwd>${env.ARTIFACTORY_PASS}</passwd>
18 <jackson-2-version>2.12.3</jackson-2-version>
19 <geniusweb.version>2.0.0</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29
30 <dependencies>
31 <dependency>
32 <groupId>org.apache.commons</groupId>
33 <artifactId>commons-math</artifactId>
34 <version>2.2</version>
35 </dependency>
36 <dependency>
37 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
39 <version>4.12</version>
40 <scope>test</scope>
41 </dependency>
42
43 </dependencies>
44
45
46 <repositories>
47 <repository>
48 <id>artifactory.ewi.tudelft.nl</id>
49 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
50 <snapshots>
51 <enabled>false</enabled>
52 </snapshots>
53 </repository>
54 </repositories>
55
56 <pluginRepositories>
57 <pluginRepository>
58 <id>central</id>
59 <url>https://repo1.maven.org/maven2</url>
60 </pluginRepository>
61 </pluginRepositories>
62
63 <build>
64
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-compiler-plugin</artifactId>
69 <version>3.8.0</version>
70 <configuration>
71 <source>1.8</source>
72 <target>1.8</target>
73 </configuration>
74 </plugin>
75
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-source-plugin</artifactId>
79 <version>3.1.0</version>
80 <executions>
81 <execution>
82 <id>attach-sources</id>
83 <goals>
84 <goal>jar</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89
90 <!-- The javadoc is disabled because this basically is a clone of 3rd
91 party code that has no proper documentation. <plugin> <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions>
93 <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution>
94 </executions> </plugin> -->
95 <plugin>
96 <groupId>org.jfrog.buildinfo</groupId>
97 <artifactId>artifactory-maven-plugin</artifactId>
98 <version>3.2.3</version>
99 <executions>
100 <execution>
101 <id>build-info</id>
102 <goals>
103 <goal>publish</goal>
104 </goals>
105 <configuration>
106 <publisher>
107 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
108 <repoKey>libs-release</repoKey>
109 <username>wouter</username>
110 <password>${passwd}</password>
111 </publisher>
112 </configuration>
113 </execution>
114 </executions>
115 </plugin>
116
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-assembly-plugin</artifactId>
120 <version>2.4.1</version>
121 <configuration>
122 <!-- get all project dependencies -->
123 <descriptorRefs>
124 <descriptorRef>jar-with-dependencies</descriptorRef>
125 </descriptorRefs>
126 <archive>
127 <manifest>
128 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
129 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
130 </manifest>
131 </archive>
132 </configuration>
133 <executions>
134 <execution>
135 <id>make-assembly</id>
136 <!-- bind to the packaging phase -->
137 <phase>package</phase>
138 <goals>
139 <goal>single</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
144
145
146 </plugins>
147
148 <pluginManagement>
149 <plugins>
150 <plugin>
151 <groupId>org.eclipse.m2e</groupId>
152 <artifactId>lifecycle-mapping</artifactId>
153 <version>1.0.0</version>
154 <configuration>
155 <lifecycleMappingMetadata>
156 <pluginExecutions>
157 <pluginExecution>
158 <pluginExecutionFilter>
159 <groupId>org.jfrog.buildinfo</groupId>
160 <artifactId>artifactory-maven-plugin</artifactId>
161 <versionRange>[1.0.0,)</versionRange>
162 <goals>
163 <goal>publish</goal>
164 </goals>
165 </pluginExecutionFilter>
166 <action>
167 <ignore />
168 </action>
169 </pluginExecution>
170 </pluginExecutions>
171 </lifecycleMappingMetadata>
172 </configuration>
173 </plugin>
174 </plugins>
175 </pluginManagement>
176
177
178 </build>
179</project>
Note: See TracBrowser for help on using the repository browser.