Commit c492be4c by Jessica Hawkwell

updating a few things

1 parent 7b7a57f9
Pipeline #88 passed
in 21 seconds
Showing with 37 additions and 33 deletions
<?xml version="1.0" encoding="UTF-8"?> <?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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>com.starphoenixmedia</groupId> <groupId>com.starphoenixmedia</groupId>
<artifactId>candle_pos</artifactId> <artifactId>candle_pos</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<name>Candle POS</name> <name>Candle POS</name>
<url>https://ladyserenakitty.felinewith.me/candle-pos/</url> <url>https://ladyserenakitty.felinewith.me/candle-pos/</url>
<organization> <organization>
<name>StarPhoenix Media</name> <name>StarPhoenix Media</name>
<url>http://starphoenixmedia.com/</url> <url>http://starphoenixmedia.com/</url>
</organization> </organization>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
</properties> </properties>
<build> <build>
<plugins> <plugins>
...@@ -31,38 +35,38 @@ ...@@ -31,38 +35,38 @@
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<classpathLayoutType>repository</classpathLayoutType> <classpathLayoutType>repository</classpathLayoutType>
<packageName>CandlePOS</packageName> <packageName>CandlePOS</packageName>
<mainClass>com.starphoenixmedia.candle_pos.Starter</mainClass> <mainClass>com.starphoenixmedia.candle_pos.Starter</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version> <version>3.6.1</version>
<configuration> <configuration>
<showDeprecation>true</showDeprecation> <showDeprecation>true</showDeprecation>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>internal</id> <id>internal</id>
<url>https://mvn.felinewith.me/repository/internal/</url> <url>https://mvn.felinewith.me/repository/internal/</url>
</repository> </repository>
<snapshotRepository> <snapshotRepository>
<id>snapshots</id> <id>snapshots</id>
<url>https://mvn.felinewith.me/repository/snapshots/</url> <url>https://mvn.felinewith.me/repository/snapshots/</url>
</snapshotRepository> </snapshotRepository>
<site> <site>
<id>stage</id> <id>Main</id>
<url>https://ladyserenakitty.felinewith.me/candle-pos/</url> <url>https://ladyserenakitty.felinewith.me/candle-pos/</url>
</site> </site>
</distributionManagement> </distributionManagement>
<dependencies> <dependencies>
<dependency> <dependency>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!