source: exampleparties/boulware/pom.xml@ 30

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

Fixed memory leak. MOPAC2. removed jcenter build dependencies

File size: 5.2 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.exampleparties</groupId>
7 <artifactId>boulware</artifactId>
8 <version>1.5.9</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.9.10</jackson-2-version>
19 <geniusweb.version>1.5.9</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29
30 <dependencies>
31
32
33 <dependency>
34 <groupId>geniusweb.exampleparties</groupId>
35 <artifactId>timedependentparty</artifactId>
36 <version>${geniusweb.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>tudelft.utilities</groupId>
40 <artifactId>logging</artifactId>
41 <version>1.0.1</version>
42 </dependency>
43
44 </dependencies>
45
46
47 <repositories>
48 <repository>
49 <id>artifactory.ewi.tudelft.nl</id>
50 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
51 <snapshots>
52 <enabled>false</enabled>
53 </snapshots>
54 </repository>
55 </repositories>
56
57 <pluginRepositories>
58 <pluginRepository>
59 <id>central</id>
60 <url>https://repo1.maven.org/</url>
61 </pluginRepository>
62 <pluginRepository>
63 <id>jfrog-plugins-release</id>
64 <name>plugins-release</name>
65 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
66 </pluginRepository>
67 </pluginRepositories>
68
69
70
71 <build>
72
73 <plugins>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-compiler-plugin</artifactId>
77 <version>3.8.0</version>
78 <configuration>
79 <source>1.8</source>
80 <target>1.8</target>
81 </configuration>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-source-plugin</artifactId>
86 <version>3.1.0</version>
87 <executions>
88 <execution>
89 <id>attach-sources</id>
90 <goals>
91 <goal>jar</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-jar-plugin</artifactId>
100 <configuration>
101 <archive>
102 <manifest>
103 <mainClass>geniusweb.exampleparties.boulware.Boulware</mainClass>
104 </manifest>
105 </archive>
106 </configuration>
107 </plugin>
108
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-javadoc-plugin</artifactId>
112 <version>3.2.0</version>
113 <executions>
114 <execution>
115 <id>attach-javadocs</id>
116 <goals>
117 <goal>jar</goal>
118 </goals>
119 </execution>
120 </executions>
121 </plugin>
122
123 <plugin>
124 <groupId>org.jfrog.buildinfo</groupId>
125 <artifactId>artifactory-maven-plugin</artifactId>
126 <version>2.6.1</version>
127 <executions>
128 <execution>
129 <id>build-info</id>
130 <goals>
131 <goal>publish</goal>
132 </goals>
133 <configuration>
134 <publisher>
135 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
136 <repoKey>libs-release</repoKey>
137 <username>wouter</username>
138 <password>${passwd}</password>
139 </publisher>
140 </configuration>
141 </execution>
142 </executions>
143 </plugin>
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-assembly-plugin</artifactId>
148 <version>2.4.1</version>
149 <configuration>
150 <!-- get all project dependencies -->
151 <descriptorRefs>
152 <descriptorRef>jar-with-dependencies</descriptorRef>
153 </descriptorRefs>
154 <archive>
155 <manifest>
156 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
157 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
158 <mainClass>geniusweb.exampleparties.boulware.Boulware</mainClass>
159 </manifest>
160 </archive>
161 </configuration>
162 <executions>
163 <execution>
164 <id>make-assembly</id>
165 <!-- bind to the packaging phase -->
166 <phase>package</phase>
167 <goals>
168 <goal>single</goal>
169 </goals>
170 </execution>
171 </executions>
172 </plugin>
173
174
175 </plugins>
176
177 <pluginManagement>
178 <plugins>
179 <plugin>
180 <groupId>org.eclipse.m2e</groupId>
181 <artifactId>lifecycle-mapping</artifactId>
182 <version>1.0.0</version>
183 <configuration>
184 <lifecycleMappingMetadata>
185 <pluginExecutions>
186 <pluginExecution>
187 <pluginExecutionFilter>
188 <groupId>org.jfrog.buildinfo</groupId>
189 <artifactId>artifactory-maven-plugin</artifactId>
190 <versionRange>[1.0.0,)</versionRange>
191 <goals>
192 <goal>publish</goal>
193 </goals>
194 </pluginExecutionFilter>
195 <action>
196 <ignore />
197 </action>
198 </pluginExecution>
199 </pluginExecutions>
200 </lifecycleMappingMetadata>
201 </configuration>
202 </plugin>
203 </plugins>
204 </pluginManagement>
205
206
207 </build>
208</project>
Note: See TracBrowser for help on using the repository browser.