source: pythonadapter/pom.xml@ 14

Last change on this file since 14 was 14, checked in by bart, 4 years ago

Release 1.4.0

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