source: pythonadapter/pom.xml@ 31

Last change on this file since 31 was 31, checked in by bart, 3 years ago

New protocols Learn and APPLearn. Fixed memory leak.

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.6.0</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.6.0</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 </repositories>
57
58 <pluginRepositories>
59 <pluginRepository>
60 <id>central</id>
61 <url>https://repo1.maven.org/</url>
62 </pluginRepository>
63 <pluginRepository>
64 <id>jfrog-plugins-release</id>
65 <name>plugins-release</name>
66 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
67 </pluginRepository>
68 </pluginRepositories>
69
70
71 <build>
72
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-javadoc-plugin</artifactId>
87 <version>3.2.0</version>
88 <executions>
89 <execution>
90 <id>attach-javadocs</id>
91 <goals>
92 <goal>jar</goal>
93 </goals>
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.