Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed pom.xml #37

Merged
merged 1 commit into from
Jun 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 36 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,35 @@
<artifactId>petition-generator</artifactId>
<name>Petition Generator</name>
<description>Petition Generation library for Java to generate dynamic petitions</description>
<url>https://github.com/snturk/petition-generator</url>
<version>1.0-SNAPSHOT</version>

<packaging>jar</packaging>

<licenses>
<license>
<!-- GNU v3 License-->
<name>GNU v3 License</name>
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Muratcan Şentürk</name>
<email>mcsnturk@gmail.com</email>
<organization>org.github.snturk</organization>
<organizationUrl>https://github.com/snturk</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/snturk/petition-generator.git</connection>
<developerConnection>scm:git:ssh//github.com/snturk/petition-generator.git</developerConnection>
<url>https://github.com/snturk/petition-generator</url>
</scm>


<dependencies>
<dependency>
<groupId>org.immutables</groupId>
Expand All @@ -23,12 +48,6 @@
<artifactId>jakarta.annotation-api</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
Expand Down Expand Up @@ -59,6 +78,16 @@
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.20.0</version>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<!-- Test Dependencies -->

</dependencies>

<properties>
Expand Down