Have to go to bed now need to write

This commit is contained in:
2020-12-10 23:50:44 +01:00
parent 7a64b195ed
commit 4dd3468bef
13 changed files with 4145 additions and 154 deletions

26
pom.xml
View File

@@ -1,19 +1,27 @@
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>com.github.cato447</groupId>
<artifactId>AbizeitungVotingSystem</artifactId>
<version>0.0.1-SNAPSHOT</version>
<artifactId>AbiVoting</artifactId>
<version>1.0</version>
<name>AbizeitungVotingSystem</name>
<description>A Voting System to get voting information for our graduating book</description>
<distributionManagement>
<repository>
<id>ssh-repository</id>
<url>scpexe://81.169.149.143/program</url>
</repository>
</distributionManagement>
<properties>
<java.version>11</java.version>
</properties>
@@ -74,6 +82,14 @@
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
<extensions>
<!-- Enabling the use of SSH -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>2.10</version>
</extension>
</extensions>
</build>
</project>