parent
f4a595f370
commit
d4e2f95cf3
@ -0,0 +1,6 @@
|
|||||||
|
### MISP Helper
|
||||||
|
|
||||||
|
|
||||||
|
#### Build
|
||||||
|
* do `mvn clean install` for local
|
||||||
|
* or `mvn deploy` for local nexus
|
@ -1,10 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
version="0.1"
|
|
||||||
file="target/helper-${version}.jar"
|
|
||||||
groupId="com.olexyn.misp.helper"
|
|
||||||
artifactId="helper"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mvn package
|
|
||||||
mvn install:install-file -Dfile=${file} -DgroupId=${groupId} -DartifactId=${artifactId} -Dversion=${version} -Dpackaging=jar -DgeneratePom=true
|
|
@ -1,84 +1,34 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<modelVersion>4.0.0</modelVersion>
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.olexyn</groupId>
|
||||||
|
<artifactId>zeeroot</artifactId>
|
||||||
<groupId>com.olexyn.misp.helper</groupId>
|
<version>17.0.1</version>
|
||||||
<artifactId>helper</artifactId>
|
</parent>
|
||||||
<version>0.1</version>
|
<groupId>com.olexyn.misp</groupId>
|
||||||
|
<artifactId>helper</artifactId>
|
||||||
<name>helper</name>
|
<version>0.1</version>
|
||||||
|
<name>helper</name>
|
||||||
<properties>
|
<dependencyManagement>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<dependencies>
|
||||||
<maven.compiler.source>11</maven.compiler.source>
|
<dependency>
|
||||||
<maven.compiler.target>11</maven.compiler.target>
|
<groupId>com.olexyn</groupId>
|
||||||
</properties>
|
<artifactId>zeebom</artifactId>
|
||||||
|
<version>1.1.1</version>
|
||||||
<dependencies>
|
<type>pom</type>
|
||||||
<dependency>
|
<scope>import</scope>
|
||||||
<groupId>junit</groupId>
|
</dependency>
|
||||||
<artifactId>junit</artifactId>
|
</dependencies>
|
||||||
<version>3.8.1</version>
|
</dependencyManagement>
|
||||||
</dependency>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.json</groupId>
|
<groupId>org.json</groupId>
|
||||||
<artifactId>json</artifactId>
|
<artifactId>json</artifactId>
|
||||||
<version>20190722</version>
|
</dependency>
|
||||||
</dependency>
|
<dependency>
|
||||||
</dependencies>
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
</dependency>
|
||||||
<build>
|
</dependencies>
|
||||||
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-clean-plugin</artifactId>
|
|
||||||
<version>3.1.0</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-site-plugin</artifactId>
|
|
||||||
<version>3.7.1</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
||||||
<version>3.0.0</version>
|
|
||||||
</plugin>
|
|
||||||
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
|
||||||
<version>3.0.2</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
|
||||||
<version>3.8.0</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
|
||||||
<version>2.22.1</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.0.2</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-install-plugin</artifactId>
|
|
||||||
<version>2.5.2</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<version>2.8.2</version>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</pluginManagement>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
<reporting>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</reporting>
|
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
Reference in new issue