Skip to content

Commit

Permalink
Project has been mavenized.
Browse files Browse the repository at this point in the history
  • Loading branch information
manolodd committed Mar 18, 2019
1 parent 791a93c commit 630b8fb
Show file tree
Hide file tree
Showing 257 changed files with 576 additions and 4,023 deletions.
143 changes: 0 additions & 143 deletions build.xml

This file was deleted.

69 changes: 69 additions & 0 deletions dependency-reduced-pom.xml
@@ -0,0 +1,69 @@
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.manolodominguez</groupId>
<artifactId>opensimmpls</artifactId>
<name>opensimmpls</name>
<version>2.1</version>
<url>http://opensimmpls.manolodominguez.com/</url>
<build>
<finalName>openSimMPLS-bin-v${project.version}</finalName>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<archive>
<manifest>
<mainClass>com.manolodominguez.opensimmpls.main.openSimMPLS</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>com.manolodominguez.opensimmpls.main.openSimMPLS</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>netbeans</id>
<name>Netbeans rep</name>
<url>http://bits.netbeans.org/maven2/</url>
</repository>
</repositories>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>

Binary file not shown.
Binary file removed lib/jfreechart-1.5.0.jar
Binary file not shown.
Binary file removed lib/miglayout-core-5.1.jar
Binary file not shown.
Binary file removed lib/miglayout-swing-5.1.jar
Binary file not shown.
19 changes: 0 additions & 19 deletions lib/nblibraries.properties

This file was deleted.

Binary file removed lib/netbeans.jar
Binary file not shown.
Binary file removed lib/slf4j-api-1.7.25.jar
Binary file not shown.
Binary file removed lib/slf4j-simple-1.7.25.jar
Binary file not shown.
3 changes: 0 additions & 3 deletions manifest.mf

This file was deleted.

46 changes: 46 additions & 0 deletions nbactions.xml
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-classpath %classpath com.manolodominguez.opensimmpls.main.openSimMPLS</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
<action>
<actionName>debug</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath ${packageClassName}</exec.args>
<exec.executable>java</exec.executable>
<jpda.listen>true</jpda.listen>
</properties>
</action>
<action>
<actionName>profile</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-classpath %classpath ${packageClassName}</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
</actions>

0 comments on commit 630b8fb

Please sign in to comment.