Skip to content

Commit 50e306f

Browse files
committed
added some Maven Central requirements to pom and updated readme
1 parent 4a7f771 commit 50e306f

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# server-core-tools
2-
The server core-tools repository contains methods that are shared by all SEPIA servers and other tools like the SDK.
1+
# SEPIA Core-Tools for Java
2+
The Core-Tools repository contains classes and methods that are shared by all SEPIA servers and other tools like the SDK. It simplifies HTTP calls, JSON handling, file and database operations, assistant access and more.

pom.xml

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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">
53
<modelVersion>4.0.0</modelVersion>
64

75
<groupId>net.b07z.sepia.server.core</groupId>
86
<artifactId>sepia-core-tools</artifactId>
97
<version>2.0.1</version>
8+
<name>SEPIA Core-Tools</name>
9+
<description>The Core-Tools repository contains classes and methods that are shared by all SEPIA servers and other tools like the SDK.</description>
10+
<url>https://github.com/SEPIA-Framework/sepia-core-tools-java</url>
1011
<packaging>jar</packaging>
12+
13+
<licenses>
14+
<license>
15+
<name>MIT License</name>
16+
<url>http://www.opensource.org/licenses/mit-license.php</url>
17+
</license>
18+
</licenses>
1119

1220
<properties>
1321
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -114,4 +122,19 @@
114122
</dependency>
115123
</dependencies>
116124

125+
<developers>
126+
<developer>
127+
<name>Florian Quirin</name>
128+
<email>[email protected]</email>
129+
<organization>bytemind.de</organization>
130+
<organizationUrl>http://bytemind.de</organizationUrl>
131+
</developer>
132+
</developers>
133+
134+
<scm>
135+
<connection>scm:git:git://github.com/SEPIA-Framework/sepia-core-tools-java.git</connection>
136+
<developerConnection>scm:git:ssh://github.com:SEPIA-Framework/sepia-core-tools-java.git</developerConnection>
137+
<url>https://github.com/SEPIA-Framework/sepia-core-tools-java/tree/master</url>
138+
</scm>
139+
117140
</project>

0 commit comments

Comments
 (0)