source: pyrunner/pom.xml@ 648

Last change on this file since 648 was 648, checked in by wouter, 11 months ago

#224 refuse commands containing newlines for ProcessRunner/Call

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