Skip to content

Commit 18f732d

Browse files
committed
[maven-release-plugin] prepare release mmtf-1.0.4
1 parent 2978574 commit 18f732d

File tree

4 files changed

+760
-760
lines changed

4 files changed

+760
-760
lines changed

mmtf-api/pom.xml

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
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-api</artifactId>
9-
<packaging>jar</packaging>
10-
<name>mmtf-api</name>
11-
<url>http://maven.apache.org</url>
12-
13-
<properties>
14-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
</properties>
16-
17-
<dependencies>
18-
<dependency>
19-
<groupId>junit</groupId>
20-
<artifactId>junit</artifactId>
21-
</dependency>
22-
</dependencies>
23-
<build>
24-
<plugins>
25-
26-
<!-- Excluding demo package is required for avoiding namespace clashes
27-
(demo package is in all modules) for signing the jar. See issue #387 -->
28-
<plugin>
29-
<groupId>org.apache.maven.plugins</groupId>
30-
<artifactId>maven-jar-plugin</artifactId>
31-
</plugin>
32-
33-
<plugin>
34-
<groupId>org.apache.maven.plugins</groupId>
35-
<artifactId>maven-compiler-plugin</artifactId>
36-
<configuration>
37-
<debug>true</debug>
38-
</configuration>
39-
</plugin>
40-
</plugins>
41-
</build>
42-
43-
<reporting>
44-
<plugins>
45-
<plugin>
46-
<groupId>org.codehaus.mojo</groupId>
47-
<artifactId>findbugs-maven-plugin</artifactId>
48-
<version>3.0.3</version>
49-
</plugin>
50-
</plugins>
51-
</reporting>
52-
53-
54-
</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-api</artifactId>
9+
<packaging>jar</packaging>
10+
<name>mmtf-api</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>junit</groupId>
20+
<artifactId>junit</artifactId>
21+
</dependency>
22+
</dependencies>
23+
<build>
24+
<plugins>
25+
26+
<!-- Excluding demo package is required for avoiding namespace clashes
27+
(demo package is in all modules) for signing the jar. See issue #387 -->
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-jar-plugin</artifactId>
31+
</plugin>
32+
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-compiler-plugin</artifactId>
36+
<configuration>
37+
<debug>true</debug>
38+
</configuration>
39+
</plugin>
40+
</plugins>
41+
</build>
42+
43+
<reporting>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.codehaus.mojo</groupId>
47+
<artifactId>findbugs-maven-plugin</artifactId>
48+
<version>3.0.3</version>
49+
</plugin>
50+
</plugins>
51+
</reporting>
52+
53+
54+
</project>

mmtf-codec/pom.xml

Lines changed: 117 additions & 117 deletions
Original file line numberDiff line numberDiff line change
@@ -1,117 +1,117 @@
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

Comments
 (0)