Skip to content

Commit 9f10aed

Browse files
committed
[maven-release-plugin] prepare release v0.4.3
1 parent 78e840a commit 9f10aed

1 file changed

Lines changed: 196 additions & 196 deletions

File tree

pom.xml

Lines changed: 196 additions & 196 deletions
Original file line numberDiff line numberDiff line change
@@ -1,196 +1,196 @@
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/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
5-
<groupId>com.iobeam</groupId>
6-
<artifactId>iobeam-client-java</artifactId>
7-
<version>0.4.3-SNAPSHOT</version>
8-
9-
<name>${project.groupId}:${project.artifactId}</name>
10-
<url>https://www.iobeam.com/</url>
11-
<description>
12-
Java client library for the iobeam REST API.
13-
</description>
14-
15-
<licenses>
16-
<license>
17-
<name>Apache License, Version 2.0</name>
18-
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
19-
</license>
20-
</licenses>
21-
22-
<developers>
23-
<developer>
24-
<name>iobeam</name>
25-
<email>hello@iobeam.com</email>
26-
<organization>iobeam</organization>
27-
<organizationUrl>https://www.iobeam.com</organizationUrl>
28-
</developer>
29-
</developers>
30-
31-
<scm>
32-
<connection>scm:git:git@github.com:iobeam/iobeam-client-java.git</connection>
33-
<developerConnection>scm:git:git@github.com:iobeam/iobeam-client-java.git</developerConnection>
34-
<url>git@github.com:iobeam/iobeam-client-java.git</url>
35-
<tag>HEAD</tag>
36-
</scm>
37-
38-
<properties>
39-
<!-- Must have source compatibility with Java 6 to support Android -->
40-
<maven.compiler.target>1.6</maven.compiler.target>
41-
<maven.compiler.source>1.6</maven.compiler.source>
42-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
44-
<skipITs>true</skipITs>
45-
<skipPGP>true</skipPGP>
46-
<skipDoc>true</skipDoc>
47-
</properties>
48-
49-
<distributionManagement>
50-
<snapshotRepository>
51-
<id>sonatype-nexus-staging</id>
52-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
53-
</snapshotRepository>
54-
<repository>
55-
<id>sonatype-nexus-staging</id>
56-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
57-
</repository>
58-
</distributionManagement>
59-
60-
<build>
61-
<plugins>
62-
<plugin>
63-
<groupId>org.sonatype.plugins</groupId>
64-
<artifactId>nexus-staging-maven-plugin</artifactId>
65-
<version>1.6.5</version>
66-
<extensions>true</extensions>
67-
<configuration>
68-
<serverId>sonatype-nexus-staging</serverId>
69-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
70-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
71-
</configuration>
72-
</plugin>
73-
74-
<plugin>
75-
<groupId>org.apache.maven.plugins</groupId>
76-
<artifactId>maven-gpg-plugin</artifactId>
77-
<version>1.6</version>
78-
<configuration>
79-
<skip>${skipPGP}</skip>
80-
</configuration>
81-
<executions>
82-
<execution>
83-
<id>sign-artifacts</id>
84-
<phase>verify</phase>
85-
<goals>
86-
<goal>sign</goal>
87-
</goals>
88-
</execution>
89-
</executions>
90-
</plugin>
91-
92-
<plugin>
93-
<groupId>org.apache.maven.plugins</groupId>
94-
<artifactId>maven-release-plugin</artifactId>
95-
<version>2.5.2</version>
96-
<configuration>
97-
<tagNameFormat>v@{project.version}</tagNameFormat>
98-
<autoVersionSubmodules>true</autoVersionSubmodules>
99-
<goals>deploy</goals>
100-
</configuration>
101-
</plugin>
102-
103-
<plugin>
104-
<groupId>org.apache.maven.plugins</groupId>
105-
<artifactId>maven-source-plugin</artifactId>
106-
<version>2.4</version>
107-
<executions>
108-
<execution>
109-
<id>attach-sources</id>
110-
<goals>
111-
<goal>jar-no-fork</goal>
112-
</goals>
113-
</execution>
114-
</executions>
115-
</plugin>
116-
117-
<plugin>
118-
<groupId>org.apache.maven.plugins</groupId>
119-
<artifactId>maven-javadoc-plugin</artifactId>
120-
<version>2.10.3</version>
121-
<configuration>
122-
<skip>${skipDoc}</skip>
123-
<additionalparam>-Xdoclint:none</additionalparam>
124-
</configuration>
125-
<executions>
126-
<execution>
127-
<id>attach-javadocs</id>
128-
<goals>
129-
<goal>jar</goal>
130-
</goals>
131-
</execution>
132-
</executions>
133-
</plugin>
134-
135-
<plugin>
136-
<groupId>org.apache.maven.plugins</groupId>
137-
<artifactId>maven-surefire-plugin</artifactId>
138-
<version>2.18.1</version>
139-
<configuration>
140-
<systemPropertyVariables>
141-
<java.util.logging.SimpleFormatter.format>
142-
%1$tH:%1$tM:%1$tS %4$s %2$s %5$s%6$s%n
143-
</java.util.logging.SimpleFormatter.format>
144-
<java.util.logging.ConsoleHandler.level>
145-
ALL
146-
</java.util.logging.ConsoleHandler.level>
147-
</systemPropertyVariables>
148-
</configuration>
149-
</plugin>
150-
151-
<plugin>
152-
<artifactId>maven-failsafe-plugin</artifactId>
153-
<version>2.18.1</version>
154-
<configuration>
155-
<skipITs>${skipITs}</skipITs>
156-
<systemPropertyVariables>
157-
<java.util.logging.SimpleFormatter.format>
158-
%1$tH:%1$tM:%1$tS %4$s %2$s %5$s%6$s%n
159-
</java.util.logging.SimpleFormatter.format>
160-
<java.util.logging.ConsoleHandler.level>
161-
ALL
162-
</java.util.logging.ConsoleHandler.level>
163-
</systemPropertyVariables>
164-
</configuration>
165-
<executions>
166-
<execution>
167-
<goals>
168-
<goal>integration-test</goal>
169-
<goal>verify</goal>
170-
</goals>
171-
</execution>
172-
</executions>
173-
</plugin>
174-
</plugins>
175-
</build>
176-
177-
<dependencies>
178-
<dependency>
179-
<groupId>org.json</groupId>
180-
<artifactId>json</artifactId>
181-
<version>20140107</version>
182-
</dependency>
183-
<dependency>
184-
<groupId>junit</groupId>
185-
<artifactId>junit</artifactId>
186-
<version>4.11</version>
187-
<scope>test</scope>
188-
</dependency>
189-
<dependency>
190-
<groupId>org.mockito</groupId>
191-
<artifactId>mockito-all</artifactId>
192-
<version>1.9.5</version>
193-
<scope>test</scope>
194-
</dependency>
195-
</dependencies>
196-
</project>
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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.iobeam</groupId>
6+
<artifactId>iobeam-client-java</artifactId>
7+
<version>0.4.3</version>
8+
9+
<name>${project.groupId}:${project.artifactId}</name>
10+
<url>https://www.iobeam.com/</url>
11+
<description>
12+
Java client library for the iobeam REST API.
13+
</description>
14+
15+
<licenses>
16+
<license>
17+
<name>Apache License, Version 2.0</name>
18+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
19+
</license>
20+
</licenses>
21+
22+
<developers>
23+
<developer>
24+
<name>iobeam</name>
25+
<email>hello@iobeam.com</email>
26+
<organization>iobeam</organization>
27+
<organizationUrl>https://www.iobeam.com</organizationUrl>
28+
</developer>
29+
</developers>
30+
31+
<scm>
32+
<connection>scm:git:git@github.com:iobeam/iobeam-client-java.git</connection>
33+
<developerConnection>scm:git:git@github.com:iobeam/iobeam-client-java.git</developerConnection>
34+
<url>git@github.com:iobeam/iobeam-client-java.git</url>
35+
<tag>v0.4.3</tag>
36+
</scm>
37+
38+
<properties>
39+
<!-- Must have source compatibility with Java 6 to support Android -->
40+
<maven.compiler.target>1.6</maven.compiler.target>
41+
<maven.compiler.source>1.6</maven.compiler.source>
42+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
44+
<skipITs>true</skipITs>
45+
<skipPGP>true</skipPGP>
46+
<skipDoc>true</skipDoc>
47+
</properties>
48+
49+
<distributionManagement>
50+
<snapshotRepository>
51+
<id>sonatype-nexus-staging</id>
52+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
53+
</snapshotRepository>
54+
<repository>
55+
<id>sonatype-nexus-staging</id>
56+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
57+
</repository>
58+
</distributionManagement>
59+
60+
<build>
61+
<plugins>
62+
<plugin>
63+
<groupId>org.sonatype.plugins</groupId>
64+
<artifactId>nexus-staging-maven-plugin</artifactId>
65+
<version>1.6.5</version>
66+
<extensions>true</extensions>
67+
<configuration>
68+
<serverId>sonatype-nexus-staging</serverId>
69+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
70+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
71+
</configuration>
72+
</plugin>
73+
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-gpg-plugin</artifactId>
77+
<version>1.6</version>
78+
<configuration>
79+
<skip>${skipPGP}</skip>
80+
</configuration>
81+
<executions>
82+
<execution>
83+
<id>sign-artifacts</id>
84+
<phase>verify</phase>
85+
<goals>
86+
<goal>sign</goal>
87+
</goals>
88+
</execution>
89+
</executions>
90+
</plugin>
91+
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-release-plugin</artifactId>
95+
<version>2.5.2</version>
96+
<configuration>
97+
<tagNameFormat>v@{project.version}</tagNameFormat>
98+
<autoVersionSubmodules>true</autoVersionSubmodules>
99+
<goals>deploy</goals>
100+
</configuration>
101+
</plugin>
102+
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-source-plugin</artifactId>
106+
<version>2.4</version>
107+
<executions>
108+
<execution>
109+
<id>attach-sources</id>
110+
<goals>
111+
<goal>jar-no-fork</goal>
112+
</goals>
113+
</execution>
114+
</executions>
115+
</plugin>
116+
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-javadoc-plugin</artifactId>
120+
<version>2.10.3</version>
121+
<configuration>
122+
<skip>${skipDoc}</skip>
123+
<additionalparam>-Xdoclint:none</additionalparam>
124+
</configuration>
125+
<executions>
126+
<execution>
127+
<id>attach-javadocs</id>
128+
<goals>
129+
<goal>jar</goal>
130+
</goals>
131+
</execution>
132+
</executions>
133+
</plugin>
134+
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-surefire-plugin</artifactId>
138+
<version>2.18.1</version>
139+
<configuration>
140+
<systemPropertyVariables>
141+
<java.util.logging.SimpleFormatter.format>
142+
%1$tH:%1$tM:%1$tS %4$s %2$s %5$s%6$s%n
143+
</java.util.logging.SimpleFormatter.format>
144+
<java.util.logging.ConsoleHandler.level>
145+
ALL
146+
</java.util.logging.ConsoleHandler.level>
147+
</systemPropertyVariables>
148+
</configuration>
149+
</plugin>
150+
151+
<plugin>
152+
<artifactId>maven-failsafe-plugin</artifactId>
153+
<version>2.18.1</version>
154+
<configuration>
155+
<skipITs>${skipITs}</skipITs>
156+
<systemPropertyVariables>
157+
<java.util.logging.SimpleFormatter.format>
158+
%1$tH:%1$tM:%1$tS %4$s %2$s %5$s%6$s%n
159+
</java.util.logging.SimpleFormatter.format>
160+
<java.util.logging.ConsoleHandler.level>
161+
ALL
162+
</java.util.logging.ConsoleHandler.level>
163+
</systemPropertyVariables>
164+
</configuration>
165+
<executions>
166+
<execution>
167+
<goals>
168+
<goal>integration-test</goal>
169+
<goal>verify</goal>
170+
</goals>
171+
</execution>
172+
</executions>
173+
</plugin>
174+
</plugins>
175+
</build>
176+
177+
<dependencies>
178+
<dependency>
179+
<groupId>org.json</groupId>
180+
<artifactId>json</artifactId>
181+
<version>20140107</version>
182+
</dependency>
183+
<dependency>
184+
<groupId>junit</groupId>
185+
<artifactId>junit</artifactId>
186+
<version>4.11</version>
187+
<scope>test</scope>
188+
</dependency>
189+
<dependency>
190+
<groupId>org.mockito</groupId>
191+
<artifactId>mockito-all</artifactId>
192+
<version>1.9.5</version>
193+
<scope>test</scope>
194+
</dependency>
195+
</dependencies>
196+
</project>

0 commit comments

Comments
 (0)