source: exampleparties/linear/pom.xml@ 30

Last change on this file since 30 was 30, checked in by bart, 4 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>linear</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 <build>
70
71 <plugins>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-compiler-plugin</artifactId>
75 <version>3.8.0</version>
76 <configuration>
77 <source>1.8</source>
78 <target>1.8</target>
79 </configuration>
80 </plugin>
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-source-plugin</artifactId>
84 <executions>
85 <execution>
86 <id>attach-sources</id>
87 <goals>
88 <goal>jar</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-jar-plugin</artifactId>
97 <configuration>
98 <archive>
99 <manifest>
100 <mainClass>geniusweb.exampleparties.linear.Linear</mainClass>
101 </manifest>
102 </archive>
103 </configuration>
104 </plugin>
105
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-javadoc-plugin</artifactId>
109 <version>3.2.0</version>
110 <executions>
111 <execution>
112 <id>attach-javadocs</id>
113 <goals>
114 <goal>jar</goal>
115 </goals>
116 </execution>
117 </executions>
118 </plugin>
119
120 <plugin>
121 <groupId>org.jfrog.buildinfo</groupId>
122 <artifactId>artifactory-maven-plugin</artifactId>
123 <version>2.6.1</version>
124 <executions>
125 <execution>
126 <id>build-info</id>
127 <goals>
128 <goal>publish</goal>
129 </goals>
130 <configuration>
131 <publisher>
132 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
133 <repoKey>libs-release</repoKey>
134 <username>wouter</username>
135 <password>${passwd}</password>
136 </publisher>
137 </configuration>
138 </execution>
139 </executions>
140 </plugin>
141
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-assembly-plugin</artifactId>
145 <version>2.4.1</version>
146 <configuration>
147 <!-- get all project dependencies -->
148 <descriptorRefs>
149 <descriptorRef>jar-with-dependencies</descriptorRef>
150 </descriptorRefs>
151 <archive>
152 <manifest>
153 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
154 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
155 <mainClass>geniusweb.exampleparties.linear.Linear</mainClass>
156 </manifest>
157 </archive>
158 </configuration>
159 <executions>
160 <execution>
161 <id>make-assembly</id>
162 <!-- bind to the packaging phase -->
163 <phase>package</phase>
164 <goals>
165 <goal>single</goal>
166 </goals>
167 </execution>
168 </executions>
169 </plugin>
170
171
172 </plugins>
173
174 <pluginManagement>
175 <plugins>
176 <plugin>
177 <groupId>org.eclipse.m2e</groupId>
178 <artifactId>lifecycle-mapping</artifactId>
179 <version>1.0.0</version>
180 <configuration>
181 <lifecycleMappingMetadata>
182 <pluginExecutions>
183 <pluginExecution>
184 <pluginExecutionFilter>
185 <groupId>org.jfrog.buildinfo</groupId>
186 <artifactId>artifactory-maven-plugin</artifactId>
187 <versionRange>[1.0.0,)</versionRange>
188 <goals>
189 <goal>publish</goal>
190 </goals>
191 </pluginExecutionFilter>
192 <action>
193 <ignore />
194 </action>
195 </pluginExecution>
196 </pluginExecutions>
197 </lifecycleMappingMetadata>
198 </configuration>
199 </plugin>
200 </plugins>
201 </pluginManagement>
202
203
204 </build>
205</project>
Note: See TracBrowser for help on using the repository browser.