Skip to content

dotSpaceTeam/common-java

Repository files navigation

Common Java Library


Java Version GitHub Support Server Stars

A library which is the core of our projects and can be used for other cool projects as well.


Building your own copy

  • To build and execute the jar Java 17 is recommended.
  • Execute gradlew build to run test and build.

Integration into own projects

Include the library in your own project via maven or gradle. Completed builds can be imported via our repository.

Gradle:

//Repository
maven {
  name 'dotSpace'
  url 'https://repo.dotspace.dev/repository/space-public/'
}

//Dependency
implementation 'dev.dotspace:common:1.0.8'

Maven:

//Repository
<repository>
  <id>dotSpace</id>
  <name>dotSpace Public Repo</name>
  <url>https://repo.dotspace.dev/repository/space-public/</url>
</repository>

//Dependency
<dependency>
  <groupId>dev.dotspace</groupId>
  <artifactId>common</artifactId>
  <version>1.0.8</version>
</dependency>