diff options
| author | 2024-06-14 20:29:43 -0500 | |
|---|---|---|
| committer | 2024-06-14 20:29:43 -0500 | |
| commit | 2113ae54df2da867f553df3a9ee457c0a3856a33 (patch) | |
| tree | 7d76e281893c155918e9bbf368509155bb4dfd9a /pom.xml | |
initial commit
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -0,0 +1,32 @@ +<?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> + + <groupId>dev.figboot</groupId> + <artifactId>CubeDisplay</artifactId> + <version>1.0-SNAPSHOT</version> + + <properties> + <maven.compiler.source>8</maven.compiler.source> + <maven.compiler.target>8</maven.compiler.target> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <repositories> + <repository> + <id>central</id> + <url>https://repo1.maven.org/maven2/</url> + </repository> + </repositories> + + <dependencies> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>1.18.28</version> + <scope>provided</scope> + </dependency> + </dependencies> +</project> |
