Skip to content

Commit 0d72808

Browse files
author
Edward Raff
committed
Initial code commit
0 parents  commit 0d72808

File tree

9 files changed

+2078
-0
lines changed

9 files changed

+2078
-0
lines changed

pom.xml

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>edu.lps.acs.ml</groupId>
5+
<artifactId>AutoYara</artifactId>
6+
<version>1.0-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<repositories>
9+
<repository>
10+
<id>jitpack.io</id>
11+
<url>https://jitpack.io</url>
12+
</repository>
13+
</repositories>
14+
<dependencies>
15+
<dependency>
16+
<groupId>me.tongfei</groupId>
17+
<artifactId>progressbar</artifactId>
18+
<version>0.7.3</version>
19+
</dependency>
20+
<dependency>
21+
<groupId>com.github.NeuromorphicComputationResearchProgram</groupId>
22+
<artifactId>KiloGrams</artifactId>
23+
<version>-78300c4072-1</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>dk.brics</groupId>
27+
<artifactId>automaton</artifactId>
28+
<version>1.12-1</version>
29+
</dependency>
30+
</dependencies>
31+
<properties>
32+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33+
<maven.compiler.source>11</maven.compiler.source>
34+
<maven.compiler.target>11</maven.compiler.target>
35+
<timestamp>${maven.build.timestamp}</timestamp>
36+
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
37+
</properties>
38+
<build>
39+
<plugins>
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-shade-plugin</artifactId>
43+
<version>3.2.2</version>
44+
<executions>
45+
<execution>
46+
<phase>package</phase>
47+
<goals>
48+
<goal>shade</goal>
49+
</goals>
50+
<configuration>
51+
<minimizeJar>true</minimizeJar>
52+
</configuration>
53+
</execution>
54+
</executions>
55+
<configuration>
56+
<transformers>
57+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
58+
<manifestEntries>
59+
<Main-Class>edu.lps.acs.ml.autoyara.AutoYaraCluster</Main-Class>
60+
<X-Compile-Source-JDK>${maven.compile.source}</X-Compile-Source-JDK>
61+
<X-Compile-Target-JDK>${maven.compile.target}</X-Compile-Target-JDK>
62+
</manifestEntries>
63+
</transformer>
64+
</transformers>
65+
</configuration>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.codehaus.mojo</groupId>
69+
<artifactId>templating-maven-plugin</artifactId>
70+
<version>1.0-alpha-3</version> <!-- Be sure to use the last version. Check on the website's plugin -->
71+
<executions>
72+
<execution>
73+
<id>filter-src</id>
74+
<goals>
75+
<goal>filter-sources</goal>
76+
</goals>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
</plugins>
81+
</build>
82+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package edu.lps.acs.ml.autoyara;
2+
3+
public class Version {
4+
public static final String buildTime = "${timestamp}";
5+
public static final String pomVersion = "${project.version}";
6+
}

0 commit comments

Comments
 (0)