-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
122 lines (122 loc) · 3.93 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>edu.uiowa.jopenmm</groupId>
<artifactId>jopenmm-fat</artifactId>
<version>8.1.2</version>
<packaging>jar</packaging>
<name>Java Wrappers for OpenMM</name>
<description>Java wrappers for the OpenMM API.</description>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>${jna.version}</version>
</dependency>
</dependencies>
<properties>
<jna.version>5.6.0</jna.version>
<jar.version>3.1.0</jar.version>
<source.version>3.2.1</source.version>
<javadoc.version>3.2.0</javadoc.version>
<compiler.version>3.8.0</compiler.version>
<fmt.version>2.9</fmt.version>
<!-- Default locations for deploying the website, snapshot location and
release location. These can be over-ridden by a developer's
settings.xml -->
<website.repo>file:website</website.repo>
<snapshot.repo>file:lib</snapshot.repo>
<release.repo>file:release</release.repo>
<maven.javadoc.skip>false</maven.javadoc.skip>
</properties>
<build>
<defaultGoal>deploy</defaultGoal>
<plugins>
<plugin>
<artifactId>fmt-maven-plugin</artifactId>
<configuration>
<filesNamePattern>.*\.java</filesNamePattern>
<skip>false</skip>
<skipSortingImports>false</skipSortingImports>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<style>google</style>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
<groupId>com.coveo</groupId>
<version>${fmt.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.version}</version>
<configuration>
<source>10</source>
<target>10</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${source.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${jar.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
<executions>
<execution>
<id>javadoc</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<downloadUrl>https://github.com/mjschnie/jopenmm</downloadUrl>
<site>
<id>Website</id>
<name>Java OpenMM Wrapper Website Location</name>
<url>${website.repo}</url>
</site>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>Snapshots</id>
<name>Local Maven SNAPSHOT Repository</name>
<url>${snapshot.repo}</url>
</snapshotRepository>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>Releases</id>
<name>Local Maven Release Repository</name>
<url>${release.repo}</url>
</repository>
</distributionManagement>
</project>