Skip to content

Commit

Permalink
add pom.xml template
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmassa committed Mar 8, 2023
1 parent 6e865b3 commit bf125bf
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/classes
/checkouts
profiles.clj
pom.xml
pom.xml.asc
*.jar
*.class
Expand Down
20 changes: 20 additions & 0 deletions template/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>io.replikativ</groupId>
<artifactId>zufall</artifactId>
<packaging>jar</packaging>
<name>zufall</name>
<description>Random name generators</description>
<licenses>
<license>
<name>Eclipse</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:replikativ/zufall.git</connection>
<developerConnection>scm:git:[email protected]/replikativ/zufall.git</developerConnection>
<url>https://github.com/replikativ/zufall</url>
</scm>
</project>

0 comments on commit bf125bf

Please sign in to comment.