source: pythonadapter/pom.xml@ 27

Last change on this file since 27 was 27, checked in by bart, 4 years ago
  • party capabilities now include profile information. Existing parties may need small fix * plot layout shows accepts * VotingEvaluator use group power instead of group size * runsession you can now also select MOPAC-only parties
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 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.5.6</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.5.6</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>3.2.0</version>
84 <executions>
85 <execution>
86 <id>attach-javadocs</id>
87 <goals>
88 <goal>jar</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-source-plugin</artifactId>
97 <executions>
98 <execution>
99 <id>attach-sources</id>
100 <goals>
101 <goal>jar</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
106
107 <plugin>
108 <groupId>org.jfrog.buildinfo</groupId>
109 <artifactId>artifactory-maven-plugin</artifactId>
110 <version>2.6.1</version>
111 <executions>
112 <execution>
113 <id>build-info</id>
114 <goals>
115 <goal>publish</goal>
116 </goals>
117 <configuration>
118 <publisher>
119 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
120 <repoKey>libs-release</repoKey>
121 <username>wouter</username>
122 <password>${passwd}</password>
123 </publisher>
124 </configuration>
125 </execution>
126 </executions>
127 </plugin>
128
129 <plugin>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-assembly-plugin</artifactId>
132 <version>2.4.1</version>
133 <configuration>
134 <!-- get all project dependencies -->
135 <descriptorRefs>
136 <descriptorRef>jar-with-dependencies</descriptorRef>
137 </descriptorRefs>
138 <archive>
139 <manifest>
140 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
141 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
142 </manifest>
143 </archive>
144 </configuration>
145 <executions>
146 <execution>
147 <id>make-assembly</id>
148 <!-- bind to the packaging phase -->
149 <phase>package</phase>
150 <goals>
151 <goal>single</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156
157
158 </plugins>
159
160 <pluginManagement>
161 <plugins>
162 <plugin>
163 <groupId>org.eclipse.m2e</groupId>
164 <artifactId>lifecycle-mapping</artifactId>
165 <version>1.0.0</version>
166 <configuration>
167 <lifecycleMappingMetadata>
168 <pluginExecutions>
169 <pluginExecution>
170 <pluginExecutionFilter>
171 <groupId>org.jfrog.buildinfo</groupId>
172 <artifactId>artifactory-maven-plugin</artifactId>
173 <versionRange>[1.0.0,)</versionRange>
174 <goals>
175 <goal>publish</goal>
176 </goals>
177 </pluginExecutionFilter>
178 <action>
179 <ignore />
180 </action>
181 </pluginExecution>
182 </pluginExecutions>
183 </lifecycleMappingMetadata>
184 </configuration>
185 </plugin>
186 </plugins>
187 </pluginManagement>
188
189
190 </build>
191</project>
Note: See TracBrowser for help on using the repository browser.