source: pythonadapter/pom.xml@ 39

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

Geniusweb 2.0.3. MOPAC protocol translated to Python. Small 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>2.0.3</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.12.3</jackson-2-version>
19 <geniusweb.version>2.0.3</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29 <dependencies>
30 <dependency>
31 <groupId>geniusweb</groupId>
32 <artifactId>party</artifactId>
33 <version>${geniusweb.version}</version>
34 </dependency>
35
36 <dependency>
37 <groupId>org.python</groupId>
38 <artifactId>jython-standalone</artifactId>
39 <version>2.7.0</version>
40 </dependency>
41
42 </dependencies>
43
44
45 <repositories>
46 <repository>
47 <id>artifactory.ewi.tudelft.nl</id>
48 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
49 <snapshots>
50 <enabled>false</enabled>
51 </snapshots>
52 </repository>
53 </repositories>
54
55 <pluginRepositories>
56 <pluginRepository>
57 <id>central</id>
58 <url>https://repo1.maven.org/maven2</url>
59 </pluginRepository>
60 <pluginRepository>
61 <id>artifactory.ewi.tudelft.nl</id>
62 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
63 </pluginRepository>
64 </pluginRepositories>
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>3.2.0</version>
83 <executions>
84 <execution>
85 <id>attach-javadocs</id>
86 <goals>
87 <goal>jar</goal>
88 </goals>
89 </execution>
90 </executions>
91 </plugin>
92
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-source-plugin</artifactId>
96 <version>3.1.0</version>
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>3.2.3</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.