source: javavenv/pom.xml

Last change on this file was 15, checked in by ruud, 16 months ago

python installs also wheel to avoid error messages

File size: 4.6 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>geniusweb</groupId>
6 <artifactId>javavenv</artifactId>
7 <version>2.1.6</version>
8
9
10 <properties>
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12 <maven.compiler.target>1.8</maven.compiler.target>
13 <maven.compiler.source>1.8</maven.compiler.source>
14 <basedir>.</basedir>
15 <passwd>${env.ARTIFACTORY_PASS}</passwd>
16 <jackson-2-version>2.12.3</jackson-2-version>
17 <!-- <tomcat.version>8.0.53</tomcat.version> -->
18 <tomcat.version>8.5.20</tomcat.version>
19 <geniusweb.version>${project.version}</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 <repositories>
31 <repository>
32 <id>artifactory.ewi.tudelft.nl</id>
33 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
34 <snapshots>
35 <enabled>false</enabled>
36 </snapshots>
37 </repository>
38 </repositories>
39
40 <pluginRepositories>
41 <pluginRepository>
42 <id>central</id>
43 <url>https://repo1.maven.org/maven2</url>
44 </pluginRepository>
45 </pluginRepositories>
46
47 <dependencies>
48 <dependency>
49 <groupId>geniusweb</groupId>
50 <artifactId>party</artifactId>
51 <version>${geniusweb.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>commons-io</groupId>
55 <artifactId>commons-io</artifactId>
56 <version>2.11.0</version>
57 </dependency>
58 <dependency>
59 <groupId>tudelft.utilities</groupId>
60 <artifactId>pyrunner</artifactId>
61 <version>1.0.0</version>
62 </dependency>
63 <dependency>
64 <groupId>junit</groupId>
65 <artifactId>junit</artifactId>
66 <version>4.12</version>
67 <scope>test</scope>
68 </dependency>
69
70 </dependencies>
71
72 <build>
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
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-enforcer-plugin</artifactId>
87 <version>3.0.0-M2</version>
88 <executions>
89 <execution>
90 <id>enforce</id>
91 <configuration>
92 <rules>
93 <dependencyConvergence />
94 </rules>
95 </configuration>
96 <goals>
97 <goal>enforce</goal>
98 </goals>
99 </execution>
100 </executions>
101 </plugin>
102
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-source-plugin</artifactId>
106 <version>3.2.1</version>
107 <executions>
108 <execution>
109 <id>attach-sources</id>
110 <goals>
111 <goal>jar</goal>
112 </goals>
113 </execution>
114 </executions>
115 </plugin>
116
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-javadoc-plugin</artifactId>
120 <version>3.2.0</version>
121 <executions>
122 <execution>
123 <id>attach-javadocs</id>
124 <goals>
125 <goal>jar</goal>
126 </goals>
127 </execution>
128 </executions>
129 </plugin>
130
131 <plugin>
132 <groupId>org.jfrog.buildinfo</groupId>
133 <artifactId>artifactory-maven-plugin</artifactId>
134 <version>3.2.3</version>
135 <executions>
136 <execution>
137 <id>build-info</id>
138 <goals>
139 <goal>publish</goal>
140 </goals>
141 <configuration>
142 <publisher>
143 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
144 <repoKey>libs-release</repoKey>
145 <username>wouter</username>
146 <password>${passwd}</password>
147 </publisher>
148 </configuration>
149 </execution>
150 </executions>
151 </plugin>
152
153
154 </plugins>
155
156 <pluginManagement>
157 <plugins>
158 <plugin>
159 <groupId>org.eclipse.m2e</groupId>
160 <artifactId>lifecycle-mapping</artifactId>
161 <version>1.0.0</version>
162 <configuration>
163 <lifecycleMappingMetadata>
164 <pluginExecutions>
165 <pluginExecution>
166 <pluginExecutionFilter>
167 <groupId>org.jfrog.buildinfo</groupId>
168 <artifactId>artifactory-maven-plugin</artifactId>
169 <versionRange>[1.0.0,)</versionRange>
170 <goals>
171 <goal>publish</goal>
172 </goals>
173 </pluginExecutionFilter>
174 <action>
175 <ignore />
176 </action>
177 </pluginExecution>
178 </pluginExecutions>
179 </lifecycleMappingMetadata>
180 </configuration>
181 </plugin>
182 </plugins>
183 </pluginManagement>
184
185
186 </build>
187</project>
Note: See TracBrowser for help on using the repository browser.