This commit is contained in:
2025-12-17 18:33:42 +00:00
parent 216f01ca41
commit f4462bc9b0
8 changed files with 31 additions and 76 deletions

View File

@@ -1,4 +0,0 @@
Manifest-Version: 1.0
Build-Jdk-Spec: 23
Created-By: Maven Integration for Eclipse

View File

@@ -1,7 +0,0 @@
#Generated by Maven Integration for Eclipse
#Sun Jun 08 10:43:04 CEST 2025
artifactId=JsonManager
groupId=eu.triler.code
m2e.projectLocation=D\:\\Codespace\\JernejTDO\\JsonManager
m2e.projectName=JsonManager
version=1.0

View File

@@ -1,65 +0,0 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>eu.triler.code</groupId>
<artifactId>JsonManager</artifactId>
<version>1.0</version>
<name>JsonManager</name>
<properties>
<java.version>11</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<distributionManagement>
<repository>
<id>TrilerGit</id>
<url>https://git.triler.eu/api/packages/TrilerCode/maven</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.9.1</version>
</dependency>
</dependencies>
</project>