2018-07-01 05:44:07 +00:00
|
|
|
<?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>andrewlalis</groupId>
|
|
|
|
<artifactId>GithubInitializer</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-csv</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
2018-10-23 12:19:31 +00:00
|
|
|
<version>1.4</version>
|
2018-07-01 05:44:07 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-10-23 12:19:31 +00:00
|
|
|
<groupId>org.apache.commons</groupId>
|
2018-07-01 05:44:07 +00:00
|
|
|
<artifactId>commons-email</artifactId>
|
2018-10-23 12:19:31 +00:00
|
|
|
<version>1.5</version>
|
2018-07-01 05:44:07 +00:00
|
|
|
</dependency>
|
2018-07-01 06:52:58 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>16.0.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-07-01 07:00:54 +00:00
|
|
|
<dependency>
|
2018-08-11 21:08:36 +00:00
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2018-10-23 12:19:31 +00:00
|
|
|
<version>4.5.6</version>
|
2018-07-01 07:00:54 +00:00
|
|
|
</dependency>
|
2018-08-16 12:40:45 +00:00
|
|
|
<!-- Github API Object Library -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kohsuke</groupId>
|
|
|
|
<artifactId>github-api</artifactId>
|
|
|
|
<version>1.93</version>
|
|
|
|
</dependency>
|
2018-10-06 23:21:01 +00:00
|
|
|
<!-- MySQL JDBC Driver -->
|
2018-08-17 05:51:34 +00:00
|
|
|
<dependency>
|
2018-10-06 23:21:01 +00:00
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>8.0.12</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>1.4.197</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Hibernate Database ORM -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>5.3.6.Final</version>
|
2018-08-17 05:51:34 +00:00
|
|
|
</dependency>
|
2018-07-01 05:44:07 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|