-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
100 lines (99 loc) · 3.33 KB
/
Copy pathpom.xml
File metadata and controls
100 lines (99 loc) · 3.33 KB
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
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>corsslinx</artifactId>
<version>0.8.0</version>
<properties>
<biojava.version>7.2.6</biojava.version>
<!-- Jmol 16.4.1 plus our thread-safety patch; see jmol-patch/README.md -->
<jmol.version>16.4.1-threadsafe-1</jmol.version>
</properties>
<repositories>
<repository>
<id>local-maven-repo</id>
<url>file:///${project.basedir}/local-maven-repo</url>
</repository>
</repositories>
<build>
<finalName>crosslinx</finalName>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>res</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<!-- BioJava 7 and ciftools-java 7 are compiled for Java 11,
so the release target cannot stay at 8: the jar would
claim a compatibility it does not have. -->
<release>11</release>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>amralhossary.bonds.ProteinParser</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId> <!-- exclude jar-with-dependencies from jar name -->
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>3.3.9</version>
</dependency>
<dependency>
<groupId>org.biojava</groupId>
<artifactId>biojava-structure</artifactId>
<version>${biojava.version}</version>
</dependency>
<dependency>
<groupId>org.biojava</groupId>
<artifactId>biojava-structure-gui</artifactId>
<version>${biojava.version}</version>
<exclusions>
<!-- BioJava pins Jmol 14.31.10, the newest on Maven Central
(2020). Excluded in favour of the current release below. -->
<exclusion>
<groupId>net.sourceforge.jmol</groupId>
<artifactId>jmol</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Vendored in local-maven-repo: Jmol is not on Maven Central beyond
14.31.10 (2020), and this build additionally carries our
thread-safety patch, reported upstream as
https://sourceforge.net/p/jmol/bugs/640/. Drop the vendored
artifact and depend on an official release once the fix ships.
jmol-patch/README.md explains how the jar is rebuilt. -->
<dependency>
<groupId>net.sourceforge.jmol</groupId>
<artifactId>jmol</artifactId>
<version>${jmol.version}</version>
</dependency>
<!-- <dependency> <groupId>docopt</groupId> <artifactId>docopt.java</artifactId>
<version>0.6.0-SNAPSHOT</version> </dependency> -->
</dependencies>
<groupId>hossary</groupId>
<name>Cross Links Explorer</name>
<description>Cross Links in Protein structures Explorer</description>
<scm>
<url>https://github.com/aalhossary/CrossLinX.git</url>
<developerConnection>Amr ALHOSSARY</developerConnection>
</scm>
</project>