Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit cc15a99

Browse files
Merge pull request #12 from SANSA-Stack/feature/0.6.0-SNAPSHOT
Bump to 0.6.0-SNAPSHOT version
2 parents 2cf1e95 + fb1399e commit cc15a99

File tree

4 files changed

+138
-215
lines changed

4 files changed

+138
-215
lines changed

pom.xml

Lines changed: 135 additions & 212 deletions
Original file line numberDiff line numberDiff line change
@@ -1,218 +1,141 @@
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-
4-
<artifactId>sansa-owl-parent_2.11</artifactId>
5-
<version>0.5.1-SNAPSHOT</version>
6-
7-
<parent>
8-
<groupId>net.sansa-stack</groupId>
9-
<artifactId>sansa-parent</artifactId>
10-
<version>0.5.1-SNAPSHOT</version>
11-
</parent>
12-
13-
<packaging>pom</packaging>
14-
<name>OWL - Parent</name>
15-
16-
<description>SANSA OWL is a library to read OWL files into Spark or Flink.
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<artifactId>sansa-owl-parent_2.11</artifactId>
7+
<parent>
8+
<groupId>net.sansa-stack</groupId>
9+
<artifactId>sansa-parent</artifactId>
10+
<version>0.6.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<packaging>pom</packaging>
14+
<name>OWL - Parent</name>
15+
16+
<description>SANSA OWL is a library to read OWL files into Spark or Flink.
1717
It allows files to reside in HDFS as well as in a local file system and distributes them across Spark
1818
RDDs/Datasets or Flink DataSets.
1919
</description>
2020

21-
<organization>
22-
<name>Smart Data Analytics (SDA) research group</name>
23-
<url>http://sda.tech</url>
24-
</organization>
25-
26-
<inceptionYear>2016</inceptionYear>
27-
28-
<url>http://sansa-stack.net/</url>
29-
30-
<licenses>
31-
<license>
32-
<name>GNU GENERAL PUBLIC LICENSE, Version 3</name>
33-
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
34-
<distribution>repo</distribution>
35-
</license>
36-
</licenses>
37-
38-
<scm>
39-
<connection>scm:git:https://github.com/SANSA-Stack/SANSA-OWL.git</connection>
40-
<url>https://github.com/SANSA-Stack/SANSA-OWL</url>
41-
<developerConnection>scm:git:https://github.com/SANSA-Stack/SANSA-OWL.git</developerConnection>
42-
</scm>
43-
44-
<developers>
45-
<developer>
46-
<id>patrick</id>
47-
<name>Patrick Westphal</name>
48-
<email>pwestphal@informatik.uni-leipzig.de</email>
49-
<organization>AKSW, Department of Computer Science, University of Leipzig</organization>
50-
<organizationUrl>http://www.aksw.org</organizationUrl>
51-
<roles>
52-
<role>developer</role>
53-
</roles>
54-
<timezone>0</timezone>
55-
</developer>
56-
</developers>
57-
58-
<issueManagement>
59-
<system>GitHub</system>
60-
<url>https://github.com/SANSA-Stack/SANSA-OWL</url>
61-
</issueManagement>
62-
63-
<modules>
64-
<module>sansa-owl-flink</module>
65-
<module>sansa-owl-spark</module>
66-
<module>sansa-owl-common</module>
67-
</modules>
68-
69-
<profiles>
70-
<!-- the profile used for deployment to Sonatype Maven repository -->
71-
<profile>
72-
<id>release</id>
73-
<distributionManagement>
74-
<repository>
75-
<id>ossrh</id>
76-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
77-
</repository>
78-
</distributionManagement>
79-
<build>
80-
<plugins>
81-
<plugin>
82-
<groupId>net.alchim31.maven</groupId>
83-
<artifactId>scala-maven-plugin</artifactId>
84-
<version>3.2.2</version>
85-
<executions>
86-
<execution>
87-
<goals>
88-
<goal>compile</goal>
89-
<goal>testCompile</goal>
90-
</goals>
91-
<configuration>
92-
<scalaVersion>${scala.version}</scalaVersion>
93-
<recompileMode>incremental</recompileMode>
94-
<useZincServer>true</useZincServer>
95-
<args>
96-
<arg>-unchecked</arg>
97-
<arg>-deprecation</arg>
98-
<arg>-feature</arg>
99-
<arg>-dependencyfile</arg>
100-
<arg>${project.build.directory}/.scala_dependencies</arg>
101-
</args>
102-
</configuration>
103-
</execution>
104-
<!-- necessary for Scaladoc Jar generation during deployment -->
105-
<execution>
106-
<id>attach-javadocs</id>
107-
<goals>
108-
<goal>doc-jar</goal>
109-
</goals>
110-
</execution>
111-
</executions>
112-
113-
</plugin>
114-
115-
<plugin>
116-
<groupId>org.apache.maven.plugins</groupId>
117-
<artifactId>maven-source-plugin</artifactId>
118-
<executions>
119-
<execution>
120-
<phase>verify</phase>
121-
<id>attach-sources</id>
122-
<goals>
123-
<goal>jar</goal>
124-
</goals>
125-
</execution>
126-
</executions>
127-
</plugin>
128-
129-
<plugin>
130-
<groupId>org.apache.maven.plugins</groupId>
131-
<artifactId>maven-javadoc-plugin</artifactId>
132-
<executions>
133-
<execution>
134-
<id>attach-javadocs</id>
135-
<goals>
136-
<goal>jar</goal>
137-
</goals>
138-
</execution>
139-
</executions>
140-
</plugin>
141-
142-
<plugin>
143-
<groupId>org.apache.maven.plugins</groupId>
144-
<artifactId>maven-gpg-plugin</artifactId>
145-
<version>1.6</version>
146-
<executions>
147-
<execution>
148-
<id>sign-artifacts</id>
149-
<phase>verify</phase>
150-
<goals>
151-
<goal>sign</goal>
152-
</goals>
153-
<configuration>
154-
<keyname>AKSW</keyname>
155-
<passphraseServerId>${gpg.keyname}</passphraseServerId>
156-
</configuration>
157-
</execution>
158-
</executions>
159-
</plugin>
160-
161-
<plugin>
162-
<groupId>org.sonatype.plugins</groupId>
163-
<artifactId>nexus-staging-maven-plugin</artifactId>
164-
<version>1.6.7</version>
165-
<extensions>true</extensions>
166-
<configuration>
167-
<serverId>ossrh</serverId>
168-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
169-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
170-
</configuration>
171-
</plugin>
172-
</plugins>
173-
</build>
174-
</profile>
175-
</profiles>
176-
177-
<repositories>
178-
<repository>
179-
<id>oss-sonatype</id>
180-
<name>oss-sonatype</name>
181-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
182-
<snapshots>
183-
<enabled>true</enabled>
184-
</snapshots>
185-
</repository>
186-
<repository>
187-
<id>apache-snapshot</id>
188-
<name>Apache repository (snapshots)</name>
189-
<url>https://repository.apache.org/content/repositories/snapshots/</url>
190-
<snapshots>
191-
<enabled>true</enabled>
192-
</snapshots>
193-
</repository>
194-
<repository>
195-
<id>maven.aksw.snapshots</id>
196-
<name>AKSW Snapshot Repository</name>
197-
<url>http://maven.aksw.org/archiva/repository/snapshots</url>
198-
<releases>
199-
<enabled>false</enabled>
200-
</releases>
201-
<snapshots>
202-
<enabled>true</enabled>
203-
</snapshots>
204-
</repository>
205-
<repository>
206-
<id>maven.aksw.internal</id>
207-
<name>AKSW Release Repository</name>
208-
<url>http://maven.aksw.org/archiva/repository/internal</url>
209-
<releases>
210-
<enabled>true</enabled>
211-
</releases>
212-
<snapshots>
213-
<enabled>false</enabled>
214-
</snapshots>
215-
</repository>
216-
</repositories>
21+
<organization>
22+
<name>Smart Data Analytics (SDA) research group</name>
23+
<url>http://sda.tech</url>
24+
</organization>
25+
26+
<inceptionYear>2016</inceptionYear>
27+
28+
<url>http://sansa-stack.net/</url>
29+
30+
<licenses>
31+
<license>
32+
<name>GNU GENERAL PUBLIC LICENSE, Version 3</name>
33+
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
34+
<distribution>repo</distribution>
35+
</license>
36+
</licenses>
37+
38+
<scm>
39+
<connection>scm:git:https://github.com/SANSA-Stack/SANSA-OWL.git</connection>
40+
<url>https://github.com/SANSA-Stack/SANSA-OWL</url>
41+
<developerConnection>scm:git:https://github.com/SANSA-Stack/SANSA-OWL.git</developerConnection>
42+
</scm>
43+
44+
<developers>
45+
<developer>
46+
<id>patrick</id>
47+
<name>Patrick Westphal</name>
48+
<email>pwestphal@informatik.uni-leipzig.de</email>
49+
<organization>AKSW, Department of Computer Science, University of Leipzig</organization>
50+
<organizationUrl>http://www.aksw.org</organizationUrl>
51+
<roles>
52+
<role>developer</role>
53+
</roles>
54+
<timezone>0</timezone>
55+
</developer>
56+
</developers>
57+
58+
<issueManagement>
59+
<system>GitHub</system>
60+
<url>https://github.com/SANSA-Stack/SANSA-OWL</url>
61+
</issueManagement>
62+
63+
<modules>
64+
<module>sansa-owl-flink</module>
65+
<module>sansa-owl-spark</module>
66+
<module>sansa-owl-common</module>
67+
</modules>
68+
69+
<repositories>
70+
<repository>
71+
<id>oss-sonatype</id>
72+
<name>oss-sonatype</name>
73+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
74+
<snapshots>
75+
<enabled>true</enabled>
76+
</snapshots>
77+
<releases>
78+
<enabled>false</enabled>
79+
</releases>
80+
</repository>
81+
<repository>
82+
<id>oss-sonatype-releases</id>
83+
<name>oss-sonatype</name>
84+
<url>https://oss.sonatype.org/content/repositories/releases/</url>
85+
<snapshots>
86+
<enabled>false</enabled>
87+
</snapshots>
88+
<releases>
89+
<enabled>true</enabled>
90+
</releases>
91+
</repository>
92+
<repository>
93+
<id>apache-snapshot</id>
94+
<name>Apache repository (snapshots)</name>
95+
<url>https://repository.apache.org/content/repositories/snapshots/</url>
96+
<snapshots>
97+
<enabled>true</enabled>
98+
</snapshots>
99+
<releases>
100+
<enabled>false</enabled>
101+
</releases>
102+
</repository>
103+
<repository>
104+
<id>maven.aksw.snapshots</id>
105+
<name>AKSW Snapshot Repository</name>
106+
<url>http://maven.aksw.org/archiva/repository/snapshots</url>
107+
<snapshots>
108+
<enabled>true</enabled>
109+
</snapshots>
110+
<releases>
111+
<enabled>false</enabled>
112+
</releases>
113+
</repository>
114+
<repository>
115+
<id>maven.aksw.internal</id>
116+
<name>AKSW Release Repository</name>
117+
<url>http://maven.aksw.org/archiva/repository/internal</url>
118+
<snapshots>
119+
<enabled>false</enabled>
120+
</snapshots>
121+
<releases>
122+
<enabled>true</enabled>
123+
</releases>
124+
</repository>
125+
</repositories>
126+
127+
<profiles>
128+
<profile>
129+
<id>root-dir</id>
130+
<activation>
131+
<file>
132+
<exists>${project.basedir}/../../scalastyle-config.xml</exists>
133+
</file>
134+
</activation>
135+
<properties>
136+
<scalastyle.config.path>${project.basedir}/../scalastyle-config.xml</scalastyle.config.path>
137+
</properties>
138+
</profile>
139+
</profiles>
217140

218141
</project>

sansa-owl-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.sansa-stack</groupId>
99
<artifactId>sansa-owl-parent_2.11</artifactId>
10-
<version>0.4.3-SNAPSHOT</version>
10+
<version>0.6.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<name>SANSA OWL layer - Common</name>

sansa-owl-flink/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>sansa-owl-parent_2.11</artifactId>
99
<groupId>net.sansa-stack</groupId>
10-
<version>0.4.3-SNAPSHOT</version>
10+
<version>0.6.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>sansa-owl-flink_2.11</artifactId>

sansa-owl-spark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>net.sansa-stack</groupId>
88
<artifactId>sansa-owl-parent_2.11</artifactId>
9-
<version>0.4.3-SNAPSHOT</version>
9+
<version>0.6.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>sansa-owl-spark_2.11</artifactId>

0 commit comments

Comments
 (0)