Skip to content
This repository has been archived by the owner on Apr 22, 2022. It is now read-only.

InFormALin/maven-parent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InFormALin Maven Parent

The Parent for all (sub) projects of InFormALin.

Maven Deploy (Dev)

HowTo

  1. Always use edu.kit.kastel.[subproject] as group id and an arbitrary artifact id that defines your project
  2. Then just add the dependency to this parent (you may use your own parent that inherits from this parent):
<repositories>
	<repository>
		<id>github</id>
		<name>GitHub InFormALin-Parent Apache Maven Packages</name>
		<url>https://maven.pkg.github.com/InFormALin/maven-parent</url>
	</repository>
</repositories>

<parent>
	<groupId>edu.kit.kastel.informalin</groupId>
	<artifactId>parent</artifactId>
	<!-- Just use the version you want. -->
	<version>0.3-SNAPSHOT</version>
</parent>