|
1 | | -<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/xsd/maven-4.0.0.xsd"> |
2 | | - <modelVersion>4.0.0</modelVersion> |
3 | | - <parent> |
4 | | - <groupId>org.rcsb</groupId> |
5 | | - <artifactId>mmtf</artifactId> |
6 | | - <version>1.0.4-SNAPSHOT</version> |
7 | | - </parent> |
8 | | - <artifactId>mmtf-codec</artifactId> |
9 | | - <packaging>jar</packaging> |
10 | | - |
11 | | - <name>mmtf-codec</name> |
12 | | - <url>http://maven.apache.org</url> |
13 | | - |
14 | | - <properties> |
15 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | | - </properties> |
17 | | - |
18 | | - <dependencies> |
19 | | - <dependency> |
20 | | - <groupId>org.rcsb</groupId> |
21 | | - <artifactId>mmtf-api</artifactId> |
22 | | - <version>1.0.4-SNAPSHOT</version> |
23 | | - </dependency> |
24 | | - <dependency> |
25 | | - <groupId>org.rcsb</groupId> |
26 | | - <artifactId>mmtf-serialization</artifactId> |
27 | | - <version>1.0.4-SNAPSHOT</version> |
28 | | - </dependency> |
29 | | - <dependency> |
30 | | - <groupId>commons-lang</groupId> |
31 | | - <artifactId>commons-lang</artifactId> |
32 | | - <version>2.4</version> |
33 | | - </dependency> |
34 | | - <!-- TEST DEPENEDENCIES --> |
35 | | - <dependency> |
36 | | - <groupId>commons-beanutils</groupId> |
37 | | - <artifactId>commons-beanutils</artifactId> |
38 | | - </dependency> |
39 | | - <dependency> |
40 | | - <groupId>uk.co.jemos.podam</groupId> |
41 | | - <artifactId>podam</artifactId> |
42 | | - </dependency> |
43 | | - <dependency> |
44 | | - <groupId>org.unitils</groupId> |
45 | | - <artifactId>unitils-core</artifactId> |
46 | | - </dependency> |
47 | | - <!-- junit managed by parent pom, don't set version or scope here --> |
48 | | - <dependency> |
49 | | - <groupId>junit</groupId> |
50 | | - <artifactId>junit</artifactId> |
51 | | - </dependency> |
52 | | - |
53 | | - <!-- logging dependencies (managed by parent pom, don't set versions or |
54 | | - scopes here) --> |
55 | | - <dependency> |
56 | | - <groupId>org.slf4j</groupId> |
57 | | - <artifactId>slf4j-api</artifactId> |
58 | | - </dependency> |
59 | | - <!-- binding for log4j2, scope=runTime set in parent pom --> |
60 | | - <dependency> |
61 | | - <groupId>org.apache.logging.log4j</groupId> |
62 | | - <artifactId>log4j-slf4j-impl</artifactId> |
63 | | - </dependency> |
64 | | - <dependency> |
65 | | - <groupId>org.apache.logging.log4j</groupId> |
66 | | - <artifactId>log4j-api</artifactId> |
67 | | - </dependency> |
68 | | - <dependency> |
69 | | - <groupId>org.apache.logging.log4j</groupId> |
70 | | - <artifactId>log4j-core</artifactId> |
71 | | - </dependency> |
72 | | - |
73 | | - </dependencies> |
74 | | - <build> |
75 | | - <plugins> |
76 | | - <plugin> |
77 | | - <groupId>org.apache.maven.plugins</groupId> |
78 | | - <artifactId>maven-jar-plugin</artifactId> |
79 | | - <configuration> |
80 | | - </configuration> |
81 | | - </plugin> |
82 | | - |
83 | | - <plugin> |
84 | | - <groupId>org.apache.maven.plugins</groupId> |
85 | | - <artifactId>maven-compiler-plugin</artifactId> |
86 | | - |
87 | | - <configuration> |
88 | | - <debug>true</debug> |
89 | | - </configuration> |
90 | | - </plugin> |
91 | | - </plugins> |
92 | | - </build> |
93 | | - |
94 | | - <reporting> |
95 | | - <plugins> |
96 | | - <plugin> |
97 | | - <artifactId>maven-javadoc-plugin</artifactId> |
98 | | - <version>2.10.1</version> |
99 | | - <configuration> |
100 | | - <aggregate>true</aggregate> |
101 | | - <breakiterator>true</breakiterator> |
102 | | - <quiet>true</quiet> |
103 | | - <source>1.8</source> |
104 | | - <verbose>false</verbose> |
105 | | - <linksource>true</linksource> |
106 | | - </configuration> |
107 | | - </plugin> |
108 | | - <plugin> |
109 | | - <groupId>org.codehaus.mojo</groupId> |
110 | | - <artifactId>findbugs-maven-plugin</artifactId> |
111 | | - <version>3.0.3</version> |
112 | | - </plugin> |
113 | | - </plugins> |
114 | | - </reporting> |
115 | | - |
116 | | - |
117 | | -</project> |
| 1 | +<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/xsd/maven-4.0.0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <parent> |
| 4 | + <groupId>org.rcsb</groupId> |
| 5 | + <artifactId>mmtf</artifactId> |
| 6 | + <version>1.0.4</version> |
| 7 | + </parent> |
| 8 | + <artifactId>mmtf-codec</artifactId> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>mmtf-codec</name> |
| 12 | + <url>http://maven.apache.org</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + </properties> |
| 17 | + |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>org.rcsb</groupId> |
| 21 | + <artifactId>mmtf-api</artifactId> |
| 22 | + <version>1.0.4</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.rcsb</groupId> |
| 26 | + <artifactId>mmtf-serialization</artifactId> |
| 27 | + <version>1.0.4</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>commons-lang</groupId> |
| 31 | + <artifactId>commons-lang</artifactId> |
| 32 | + <version>2.4</version> |
| 33 | + </dependency> |
| 34 | + <!-- TEST DEPENEDENCIES --> |
| 35 | + <dependency> |
| 36 | + <groupId>commons-beanutils</groupId> |
| 37 | + <artifactId>commons-beanutils</artifactId> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>uk.co.jemos.podam</groupId> |
| 41 | + <artifactId>podam</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.unitils</groupId> |
| 45 | + <artifactId>unitils-core</artifactId> |
| 46 | + </dependency> |
| 47 | + <!-- junit managed by parent pom, don't set version or scope here --> |
| 48 | + <dependency> |
| 49 | + <groupId>junit</groupId> |
| 50 | + <artifactId>junit</artifactId> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <!-- logging dependencies (managed by parent pom, don't set versions or |
| 54 | + scopes here) --> |
| 55 | + <dependency> |
| 56 | + <groupId>org.slf4j</groupId> |
| 57 | + <artifactId>slf4j-api</artifactId> |
| 58 | + </dependency> |
| 59 | + <!-- binding for log4j2, scope=runTime set in parent pom --> |
| 60 | + <dependency> |
| 61 | + <groupId>org.apache.logging.log4j</groupId> |
| 62 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.apache.logging.log4j</groupId> |
| 66 | + <artifactId>log4j-api</artifactId> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.apache.logging.log4j</groupId> |
| 70 | + <artifactId>log4j-core</artifactId> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + </dependencies> |
| 74 | + <build> |
| 75 | + <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.apache.maven.plugins</groupId> |
| 78 | + <artifactId>maven-jar-plugin</artifactId> |
| 79 | + <configuration> |
| 80 | + </configuration> |
| 81 | + </plugin> |
| 82 | + |
| 83 | + <plugin> |
| 84 | + <groupId>org.apache.maven.plugins</groupId> |
| 85 | + <artifactId>maven-compiler-plugin</artifactId> |
| 86 | + |
| 87 | + <configuration> |
| 88 | + <debug>true</debug> |
| 89 | + </configuration> |
| 90 | + </plugin> |
| 91 | + </plugins> |
| 92 | + </build> |
| 93 | + |
| 94 | + <reporting> |
| 95 | + <plugins> |
| 96 | + <plugin> |
| 97 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 98 | + <version>2.10.1</version> |
| 99 | + <configuration> |
| 100 | + <aggregate>true</aggregate> |
| 101 | + <breakiterator>true</breakiterator> |
| 102 | + <quiet>true</quiet> |
| 103 | + <source>1.8</source> |
| 104 | + <verbose>false</verbose> |
| 105 | + <linksource>true</linksource> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + <plugin> |
| 109 | + <groupId>org.codehaus.mojo</groupId> |
| 110 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 111 | + <version>3.0.3</version> |
| 112 | + </plugin> |
| 113 | + </plugins> |
| 114 | + </reporting> |
| 115 | + |
| 116 | + |
| 117 | +</project> |
0 commit comments