Skip to content

Commit 8bdfc32

Browse files
author
Riyad Kalla
committed
[maven-release-plugin] prepare release release-4.0-maven
1 parent a6a68ab commit 8bdfc32

File tree

1 file changed

+121
-39
lines changed

1 file changed

+121
-39
lines changed

pom.xml

+121-39
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,121 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project>
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.imgscalr</groupId>
5-
<artifactId>imgscalr</artifactId>
6-
<packaging>jar</packaging>
7-
<version>4.0</version>
8-
<name>imgscalr</name>
9-
10-
<properties>
11-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
</properties>
13-
14-
<dependencies>
15-
<dependency>
16-
<groupId>junit</groupId>
17-
<artifactId>junit</artifactId>
18-
<version>4.10</version>
19-
<scope>test</scope>
20-
</dependency>
21-
</dependencies>
22-
23-
<build>
24-
<plugins>
25-
<plugin>
26-
<groupId>org.apache.maven.plugins</groupId>
27-
<artifactId>maven-assembly-plugin</artifactId>
28-
<version>2.2.1</version>
29-
<configuration>
30-
<descriptorRefs>
31-
<descriptorRef>jar-with-dependencies</descriptorRef>
32-
</descriptorRefs>
33-
</configuration>
34-
</plugin>
35-
</plugins>
36-
</build>
37-
38-
</project>
39-
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<parent>
4+
<groupId>org.sonatype.oss</groupId>
5+
<artifactId>oss-parent</artifactId>
6+
<version>7</version>
7+
</parent>
8+
9+
<modelVersion>4.0.0</modelVersion>
10+
<groupId>org.imgscalr</groupId>
11+
<artifactId>imgscalr-lib</artifactId>
12+
<version>4.0</version>
13+
<packaging>jar</packaging>
14+
15+
<name>imgscalr - A Java Image Scaling Library</name>
16+
<description>imgscalr is an simple and efficient best-practices image-scaling and manipulation library implemented in pure Java.</description>
17+
<url>http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/</url>
18+
<licenses>
19+
<license>
20+
<name>ASF 2.0</name>
21+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
22+
<distribution>repo</distribution>
23+
</license>
24+
</licenses>
25+
26+
<scm>
27+
<connection>scm:git:git@github.com:thebuzzmedia/imgscalr.git</connection>
28+
<developerConnection>scm:git:git@github.com:thebuzzmedia/imgscalr.git</developerConnection>
29+
<url>git@github.com:thebuzzmedia/imgscalr.git</url>
30+
</scm>
31+
32+
<issueManagement>
33+
<system>GitHub</system>
34+
<url>https://github.com/thebuzzmedia/imgscalr/issues</url>
35+
</issueManagement>
36+
37+
<developers>
38+
<developer>
39+
<email>software@thebuzzmedia.com</email>
40+
<id>thebuzzmedia</id>
41+
<name>Riyad Kalla</name>
42+
<organization>The Buzz Media, LLC</organization>
43+
<organizationUrl>https://github.com/thebuzzmedia</organizationUrl>
44+
<url>http://www.thebuzzmedia.com/software/</url>
45+
</developer>
46+
</developers>
47+
48+
<organization>
49+
<name>The Buzz Media, LLC</name>
50+
<url>http://www.thebuzzmedia.com/software</url>
51+
</organization>
52+
53+
<properties>
54+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
55+
</properties>
56+
57+
<dependencies>
58+
<dependency>
59+
<groupId>junit</groupId>
60+
<artifactId>junit</artifactId>
61+
<version>4.10</version>
62+
<type>jar</type>
63+
<scope>test</scope>
64+
</dependency>
65+
</dependencies>
66+
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-source-plugin</artifactId>
72+
<version>2.1.2</version>
73+
<executions>
74+
<execution>
75+
<id>attach-sources</id>
76+
<goals>
77+
<goal>jar</goal>
78+
</goals>
79+
</execution>
80+
</executions>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-javadoc-plugin</artifactId>
85+
<version>2.8</version>
86+
<executions>
87+
<execution>
88+
<id>attach-javadocs</id>
89+
<goals>
90+
<goal>jar</goal>
91+
</goals>
92+
</execution>
93+
</executions>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-assembly-plugin</artifactId>
98+
<version>2.2.1</version>
99+
<configuration>
100+
<descriptorRefs>
101+
<descriptorRef>jar-with-dependencies</descriptorRef>
102+
</descriptorRefs>
103+
</configuration>
104+
</plugin>
105+
<!-- <plugin> -->
106+
<!-- <groupId>org.apache.maven.plugins</groupId> -->
107+
<!-- <artifactId>maven-gpg-plugin</artifactId> -->
108+
<!-- <version>1.4</version> -->
109+
<!-- <executions> -->
110+
<!-- <execution> -->
111+
<!-- <id>sign-artifacts</id> -->
112+
<!-- <phase>verify</phase> -->
113+
<!-- <goals> -->
114+
<!-- <goal>sign</goal> -->
115+
<!-- </goals> -->
116+
<!-- </execution> -->
117+
<!-- </executions> -->
118+
<!-- </plugin> -->
119+
</plugins>
120+
</build>
121+
</project>

0 commit comments

Comments
 (0)