Skip to content
This repository was archived by the owner on Aug 6, 2024. It is now read-only.

Commit 0d48a83

Browse files
Add files via upload
1 parent 50ff01d commit 0d48a83

File tree

4 files changed

+129
-0
lines changed

4 files changed

+129
-0
lines changed

build

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
echo "-------------------------- Resolving Dependecies... ------------------------"
2+
mvn clean
3+
echo "----------------------------- Packaging Jars... ----------------------------"
4+
mvn package
5+
echo "----------------------------- Running Project... ---------------------------"
6+
echo "---------------------------APPLICATION - console: --------------------------"
7+
java -cp target/XenonTools-0.1.jar ir.xenoncommunity.Main
8+
echo "--------------------------- Done Running Program ---------------------------"

pom.xml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>ir.xenoncommunity</groupId>
8+
<artifactId>XenonTools</artifactId>
9+
<version>0.1</version>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
<maven.compiler.source>8</maven.compiler.source>
14+
<maven.compiler.target>8</maven.compiler.target>
15+
</properties>
16+
<repositories>
17+
<repository>
18+
<id>jitpack.io</id>
19+
<url>https://jitpack.io</url>
20+
</repository>
21+
<repository>
22+
<id>litarvan</id>
23+
<url>https://litarvan.github.io/maven</url>
24+
</repository>
25+
</repositories>
26+
<dependencies>
27+
<dependency>
28+
<groupId>net.java.dev.jna</groupId>
29+
<artifactId>platform</artifactId>
30+
<version>3.4.0</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.guava</groupId>
34+
<artifactId>guava</artifactId>
35+
<version>17.0</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.google.code.gson</groupId>
39+
<artifactId>gson</artifactId>
40+
<version>2.10.1</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>javax.vecmath</groupId>
44+
<artifactId>vecmath</artifactId>
45+
<version>1.5.2</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.projectlombok</groupId>
49+
<artifactId>lombok</artifactId>
50+
<version>1.18.30</version>
51+
<scope>compile</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.reflections</groupId>
55+
<artifactId>reflections</artifactId>
56+
<version>0.10.2</version>
57+
</dependency>
58+
</dependencies>
59+
<build>
60+
<pluginManagement>
61+
<plugins>
62+
<plugin>
63+
<artifactId>maven-clean-plugin</artifactId>
64+
<version>3.1.0</version>
65+
</plugin>
66+
<plugin>
67+
<artifactId>maven-resources-plugin</artifactId>
68+
<version>3.0.2</version>
69+
</plugin>
70+
<plugin>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<version>3.8.0</version>
73+
</plugin>
74+
<plugin>
75+
<artifactId>maven-surefire-plugin</artifactId>
76+
<version>2.22.1</version>
77+
</plugin>
78+
<plugin>
79+
<artifactId>maven-jar-plugin</artifactId>
80+
<version>3.0.2</version>
81+
</plugin>
82+
<plugin>
83+
<artifactId>maven-install-plugin</artifactId>
84+
<version>2.5.2</version>
85+
</plugin>
86+
<plugin>
87+
<artifactId>maven-deploy-plugin</artifactId>
88+
<version>2.8.2</version>
89+
</plugin>
90+
<plugin>
91+
<artifactId>maven-site-plugin</artifactId>
92+
<version>3.7.1</version>
93+
</plugin>
94+
<plugin>
95+
<artifactId>maven-project-info-reports-plugin</artifactId>
96+
<version>3.0.0</version>
97+
</plugin>
98+
</plugins>
99+
</pluginManagement>
100+
</build>
101+
</project>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package ir.xenoncommunity;
2+
3+
import lombok.experimental.UtilityClass;
4+
5+
@UtilityClass
6+
public class Main{
7+
public void main(final String[] args){
8+
MainRunner.run();
9+
}
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package ir.xenoncommunity;
2+
3+
import lombok.experimental.UtilityClass;
4+
5+
@UtilityClass
6+
public class MainRunner{
7+
public void run(){
8+
System.out.println("salam sina");
9+
}
10+
}

0 commit comments

Comments
 (0)