Skip to content

Commit aa67056

Browse files
committed
1 parent 7a15ab6 commit aa67056

File tree

8 files changed

+148
-65
lines changed

8 files changed

+148
-65
lines changed

api/build.sbt

-11
This file was deleted.

api/pom.xml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<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+
<parent>
4+
<groupId>org.reactivestreams</groupId>
5+
<artifactId>reactive-streams</artifactId>
6+
<version>0.4.0.M1</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>reactive-streams-api</artifactId>
10+
<packaging>jar</packaging>
11+
12+
<name>reactive-streams-api</name>
13+
<url>http://www.reactive-streams.org/</url>
14+
<properties>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
</properties>
17+
<scm>
18+
<url>[email protected]:reactive-streams/reactive-streams.git</url>
19+
<connection>scm:git:[email protected]:reactive-streams/reactive-streams.git</connection>
20+
</scm>
21+
<developers>
22+
<developer>
23+
<id>reactive-streams-sig</id>
24+
<name>Reactive Streams SIG</name>
25+
<url>http://www.reactive-streams.org/</url>
26+
</developer>
27+
</developers>
28+
<build>
29+
<plugins>
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-compiler-plugin</artifactId>
33+
34+
<configuration>
35+
<source>1.7</source>
36+
<target>1.7</target>
37+
</configuration>
38+
</plugin>
39+
</plugins>
40+
</build>
41+
42+
43+
44+
</project>

build.sbt

-33
This file was deleted.

pom.xml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<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+
5+
<groupId>org.reactivestreams</groupId>
6+
<artifactId>reactive-streams</artifactId>
7+
<version>0.4.0.M1</version>
8+
<packaging>pom</packaging>
9+
10+
<name>reactive-streams</name>
11+
<url>http://www.reactive-streams.org/</url>
12+
<licenses>
13+
<license>
14+
<name>CC0</name>
15+
<url>http://creativecommons.org/publicdomain/zero/1.0/</url>
16+
</license>
17+
</licenses>
18+
19+
<properties>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
</properties>
22+
<scm>
23+
<url>[email protected]:reactive-streams/reactive-streams.git</url>
24+
<connection>scm:git:[email protected]:reactive-streams/reactive-streams.git</connection>
25+
</scm>
26+
<modules>
27+
<module>api</module>
28+
<module>tck</module>
29+
</modules>
30+
<developers>
31+
<developer>
32+
<id>reactive-streams-sig</id>
33+
<name>Reactive Streams SIG</name>
34+
<url>http://www.reactive-streams.org/</url>
35+
</developer>
36+
</developers>
37+
<build>
38+
<plugins>
39+
<plugin>
40+
<groupId>org.apache.maven.plugins</groupId>
41+
<artifactId>maven-compiler-plugin</artifactId>
42+
<version>2.3.2</version>
43+
<configuration>
44+
<source>1.7</source>
45+
<target>1.7</target>
46+
</configuration>
47+
</plugin>
48+
49+
</plugins>
50+
</build>
51+
52+
</project>

project/build.properties

-1
This file was deleted.

project/plugins.sbt

-3
This file was deleted.

tck/build.sbt

-17
This file was deleted.

tck/pom.xml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<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+
<parent>
4+
<groupId>org.reactivestreams</groupId>
5+
<artifactId>reactive-streams</artifactId>
6+
<version>0.4.0.M1</version>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>reactive-streams-tck</artifactId>
10+
<packaging>jar</packaging>
11+
12+
<name>reactive-streams-tck</name>
13+
<url>http://www.reactive-streams.org/</url>
14+
<properties>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
</properties>
17+
<scm>
18+
<url>[email protected]:reactive-streams/reactive-streams.git</url>
19+
<connection>scm:git:[email protected]:reactive-streams/reactive-streams.git</connection>
20+
</scm>
21+
<developers>
22+
<developer>
23+
<id>reactive-streams-sig</id>
24+
<name>Reactive Streams SIG</name>
25+
<url>http://www.reactive-streams.org/</url>
26+
</developer>
27+
</developers>
28+
<build>
29+
<plugins>
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-compiler-plugin</artifactId>
33+
<version>2.3.2</version>
34+
<configuration>
35+
<source>1.7</source>
36+
<target>1.7</target>
37+
<compilerArguments>
38+
<endorseddirs>${endorsed.dir}</endorseddirs>
39+
</compilerArguments>
40+
</configuration>
41+
</plugin>
42+
</plugins>
43+
</build>
44+
<dependencies>
45+
<dependency>
46+
<groupId>org.testng</groupId>
47+
<artifactId>testng</artifactId>
48+
<version>5.14.10</version>
49+
</dependency>
50+
</dependencies>
51+
52+
</project>

0 commit comments

Comments
 (0)