Skip to content

Commit

Permalink
Use pavlab-starter-parent to manage dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Feb 4, 2022
1 parent c789ac8 commit 087322e
Showing 1 changed file with 8 additions and 40 deletions.
48 changes: 8 additions & 40 deletions gotrack/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
<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>
<groupId>ubc.pavlab</groupId>

<parent>
<groupId>ubc.pavlab</groupId>
<artifactId>pavlab-starter-parent</artifactId>
<version>1.0.1</version>
</parent>

<artifactId>gotrack</artifactId>
<packaging>war</packaging>
<version>1.7.2</version>
Expand All @@ -17,17 +23,8 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- Web -->
<servlet.version>3.1.0</servlet.version>
<jsf.version>2.3.3</jsf.version>
<weld.version>3.1.7.SP1</weld.version>

<!-- logging -->
<log4j.version>2.17.1</log4j.version>
<slf4j.version>1.6.6</slf4j.version>

<!-- Test -->
<junit.version>4.11</junit.version>

</properties>

<dependencies>
Expand All @@ -46,8 +43,6 @@
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp.jstl</groupId>
Expand Down Expand Up @@ -177,8 +172,6 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<type>jar</type>
</dependency>

<!-- from java.util.logging to log4j -->
Expand All @@ -192,21 +185,16 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.25</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<artifactId>mockito-core</artifactId>
</dependency>

<dependency>
Expand Down Expand Up @@ -270,8 +258,6 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down Expand Up @@ -308,24 +294,6 @@
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<!-- Do not push to remote -->
<pushRemote>false</pushRemote>
<verbose>true</verbose>
<!-- Branch naming schemes -->
<gitFlowConfig>
<productionBranch>master</productionBranch>
<developmentBranch>development</developmentBranch>
<releaseBranchPrefix>release-</releaseBranchPrefix>
<versionTagPrefix></versionTagPrefix>
<origin>origin</origin>
<!-- Unused for releasing -->
<featureBranchPrefix>feature-</featureBranchPrefix>
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix>
<supportBranchPrefix>support-</supportBranchPrefix>
</gitFlowConfig>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 087322e

Please sign in to comment.