Initial commit

This commit is contained in:
genuineparts 2024-10-29 12:48:27 +01:00
commit 24c4e622e1
9 changed files with 410 additions and 0 deletions

30
pom.xml Normal file
View file

@ -0,0 +1,30 @@
<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>be.jaud</groupId>
<artifactId>OebbApi</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<name>ÖBB delay check and output for Info Orbs</name>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
</plugins>
</build>
</project>