source: pythonadapter/pom.xml@ 20

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

Added BOA support, some bug fixes

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