Skip to content
This repository was archived by the owner on Feb 25, 2024. It is now read-only.

Commit c563665

Browse files
committed
prepare for final testing
1 parent 012e0cd commit c563665

File tree

1 file changed

+100
-100
lines changed

1 file changed

+100
-100
lines changed

pom.xml

Lines changed: 100 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,103 +1,103 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
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-
<groupId>net.sourceforge.streamsupport</groupId>
5-
<artifactId>android-retroatomic</artifactId>
6-
<version>1.7.4-SNAPSHOT</version>
7-
<name>net.sourceforge.streamsupport:android-retroatomic</name>
8-
<description>Backport of Java 8 Double/Long Accumulator/Adder for Android Studio 3.0
2+
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+
<groupId>net.sourceforge.streamsupport</groupId>
5+
<artifactId>android-retroatomic</artifactId>
6+
<version>1.7.4</version>
7+
<name>net.sourceforge.streamsupport:android-retroatomic</name>
8+
<description>Backport of Java 8 Double/Long Accumulator/Adder for Android Studio 3+
99
desugar toolchain, forked from https://sourceforge.net/projects/streamsupport</description>
10-
<url>http://github.com/retrostreams/android-retroatomic/</url>
11-
<licenses>
12-
<license>
13-
<name>GNU General Public License, version 2, with the Classpath Exception</name>
14-
<url>http://openjdk.java.net/legal/gplv2+ce.html</url>
15-
</license>
16-
<license>
17-
<name>CC0 1.0 Universal</name>
18-
<url>https://creativecommons.org/publicdomain/zero/1.0/</url>
19-
<comments>Creative Commons CC0 1.0 Universal license applies
20-
to the source code derived from the JSR-166 project as
21-
indicated in the respective source code files
22-
</comments>
23-
</license>
24-
</licenses>
25-
<developers>
26-
<developer>
27-
<name>Stefan Zobel</name>
28-
<email>[email protected]</email>
29-
<organization>net.sourceforge.streamsupport</organization>
30-
<organizationUrl>http://github.com/retrostreams/</organizationUrl>
31-
</developer>
32-
</developers>
33-
<scm>
34-
<url>https://github.com/retrostreams/android-retroatomic</url>
35-
<connection>scm:git:https://github.com/retrostreams/android-retroatomic.git</connection>
36-
<developerConnection>scm:git:https://github.com/retrostreams/android-retroatomic.git</developerConnection>
37-
</scm>
10+
<url>http://github.com/retrostreams/android-retroatomic/</url>
11+
<licenses>
12+
<license>
13+
<name>GNU General Public License, version 2, with the Classpath Exception</name>
14+
<url>http://openjdk.java.net/legal/gplv2+ce.html</url>
15+
</license>
16+
<license>
17+
<name>CC0 1.0 Universal</name>
18+
<url>https://creativecommons.org/publicdomain/zero/1.0/</url>
19+
<comments>Creative Commons CC0 1.0 Universal license applies
20+
to the source code derived from the JSR-166 project as
21+
indicated in the respective source code files
22+
</comments>
23+
</license>
24+
</licenses>
25+
<developers>
26+
<developer>
27+
<name>Stefan Zobel</name>
28+
<email>[email protected]</email>
29+
<organization>net.sourceforge.streamsupport</organization>
30+
<organizationUrl>http://github.com/retrostreams/</organizationUrl>
31+
</developer>
32+
</developers>
33+
<scm>
34+
<url>https://github.com/retrostreams/android-retroatomic</url>
35+
<connection>scm:git:https://github.com/retrostreams/android-retroatomic.git</connection>
36+
<developerConnection>scm:git:https://github.com/retrostreams/android-retroatomic.git</developerConnection>
37+
</scm>
3838

39-
<dependencies>
40-
<dependency>
41-
<groupId>net.sourceforge.streamsupport</groupId>
42-
<artifactId>android-retrostreams</artifactId>
43-
<version>1.7.4-SNAPSHOT</version>
44-
</dependency>
45-
</dependencies>
46-
<properties>
47-
<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
48-
</properties>
49-
<build>
50-
<plugins>
51-
<plugin>
52-
<artifactId>maven-compiler-plugin</artifactId>
53-
<version>3.8.1</version>
54-
<configuration>
55-
<source>1.8</source>
56-
<target>1.8</target>
57-
</configuration>
58-
</plugin>
59-
<plugin>
60-
<groupId>org.apache.maven.plugins</groupId>
61-
<artifactId>maven-source-plugin</artifactId>
62-
<version>3.0.1</version>
63-
<executions>
64-
<execution>
65-
<id>attach-sources</id>
66-
<goals>
67-
<goal>jar</goal>
68-
</goals>
69-
</execution>
70-
</executions>
71-
</plugin>
72-
<plugin>
73-
<groupId>org.apache.maven.plugins</groupId>
74-
<artifactId>maven-javadoc-plugin</artifactId>
75-
<version>3.2.0</version>
76-
<executions>
77-
<execution>
78-
<id>attach-javadocs</id>
79-
<goals>
80-
<goal>jar</goal>
81-
</goals>
82-
</execution>
83-
</executions>
84-
</plugin>
85-
<!-- check for Java API calls that aren't compatible with Java 6 -->
86-
<plugin>
87-
<groupId>org.codehaus.mojo</groupId>
88-
<artifactId>animal-sniffer-maven-plugin</artifactId>
89-
<version>1.16</version>
90-
<configuration>
91-
<signature>
92-
<groupId>org.codehaus.mojo.signature</groupId>
93-
<artifactId>java16</artifactId>
94-
<version>1.1</version>
95-
</signature>
96-
<ignores>
97-
<ignore>sun.misc.Unsafe</ignore>
98-
</ignores>
99-
</configuration>
100-
</plugin>
101-
</plugins>
102-
</build>
103-
</project>
39+
<dependencies>
40+
<dependency>
41+
<groupId>net.sourceforge.streamsupport</groupId>
42+
<artifactId>android-retrostreams</artifactId>
43+
<version>1.7.4</version>
44+
</dependency>
45+
</dependencies>
46+
<properties>
47+
<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
48+
</properties>
49+
<build>
50+
<plugins>
51+
<plugin>
52+
<artifactId>maven-compiler-plugin</artifactId>
53+
<version>3.8.1</version>
54+
<configuration>
55+
<source>1.8</source>
56+
<target>1.8</target>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-source-plugin</artifactId>
62+
<version>3.0.1</version>
63+
<executions>
64+
<execution>
65+
<id>attach-sources</id>
66+
<goals>
67+
<goal>jar</goal>
68+
</goals>
69+
</execution>
70+
</executions>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-javadoc-plugin</artifactId>
75+
<version>3.2.0</version>
76+
<executions>
77+
<execution>
78+
<id>attach-javadocs</id>
79+
<goals>
80+
<goal>jar</goal>
81+
</goals>
82+
</execution>
83+
</executions>
84+
</plugin>
85+
<!-- check for Java API calls that aren't compatible with Java 6 -->
86+
<plugin>
87+
<groupId>org.codehaus.mojo</groupId>
88+
<artifactId>animal-sniffer-maven-plugin</artifactId>
89+
<version>1.16</version>
90+
<configuration>
91+
<signature>
92+
<groupId>org.codehaus.mojo.signature</groupId>
93+
<artifactId>java16</artifactId>
94+
<version>1.1</version>
95+
</signature>
96+
<ignores>
97+
<ignore>sun.misc.Unsafe</ignore>
98+
</ignores>
99+
</configuration>
100+
</plugin>
101+
</plugins>
102+
</build>
103+
</project>

0 commit comments

Comments
 (0)