Skip to content

Commit

Permalink
new sub-project 'sporniket-core-strings', resolves #23, address parti…
Browse files Browse the repository at this point in the history
…ally #21, #22
  • Loading branch information
sporniket committed Feb 19, 2019
1 parent d363576 commit 57eb307
Show file tree
Hide file tree
Showing 21 changed files with 1,697 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

<modules>
<module>./sporniket-core-lang</module>
<module>./sporniket-core-strings</module>
<module>./sporniket-core-ml</module>
<module>./sporniket-core-io</module>
<module>./sporniket-core-ui</module>
Expand Down
67 changes: 67 additions & 0 deletions sporniket-core-strings/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.sporniket.core</groupId>
<artifactId>sporniket-core</artifactId>
<version>16.09.01-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>sporniket-core-strings</artifactId>
<packaging>jar</packaging>

<name>sporniket-core-strings</name>
<description>String manipulation library</description>
<url>${url.base}/blob/master/${project.artifactId}</url>

<dependencies>
<!-- ===INTERNAL DEPENDENCIES -->

<!-- ===EXTERNAL DEPENDENCIES (non test) -->

<!-- ===TEST DEPENDENCIES -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.4.0</version>
<scope>test</scope>
</dependency>
<!-- bdd assertions -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
<!-- Json orm -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Version of Java supported -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven-compiler-plugin}</version>
<configuration>
<source>${version.jdk}</source>
<target>${version.jdk}</target>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>localMvnSite-${project.artifactId}</id>
<name>Sporniket Java Core Library - ${project.name}</name>
<url>${url.base.site.deploy}/${project.parent.artifactId}/${project.version}/module/${project.artifactId}</url>
</site>
</distributionManagement>
</project>
Loading

0 comments on commit 57eb307

Please sign in to comment.