Skip to content

Commit

Permalink
Merge pull request #1 from BoBkiNN/dfu-like
Browse files Browse the repository at this point in the history
V3
  • Loading branch information
BoBkiNN authored Aug 10, 2024
2 parents e8bc127 + df0a8ab commit a9b41b7
Show file tree
Hide file tree
Showing 19 changed files with 1,753 additions and 984 deletions.
40 changes: 40 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?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>
<parent>
<groupId>xyz.bobkinn</groupId>
<artifactId>indigodataio-parent</artifactId>
<version>3.0.0</version>
</parent>

<artifactId>indigodataio</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.0.1</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit a9b41b7

Please sign in to comment.