remove auto-generated file dependency-reduced-pom.xml

This commit is contained in:
Frank Dietrich 2016-05-22 18:05:13 +02:00
parent 5595d2bd99
commit f21428f7e2
2 changed files with 1 additions and 75 deletions

1
.gitignore vendored
View File

@ -4,4 +4,5 @@
*.iml
.idea/
target/
dependency-reduced-pom.xml

View File

@ -1,75 +0,0 @@
<?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>the.bytecode.club</groupId>
<artifactId>bytecode-viewer</artifactId>
<version>3.0.0</version>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>the.bytecode.club.bytecodeviewer.BytecodeViewer</mainClass>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*</exclude>
</excludes>
</filter>
<filter>
<artifact>com.fifesoft:rsyntaxtextarea</artifact>
<includes>
<include>**</include>
</includes>
</filter>
</filters>
<minimizeJar>true</minimizeJar>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>bytecode-viewer</id>
<name>Bytecode Viewer Repository</name>
<url>http://repo.samczsun.com/content/repositories/bytecode-viewer/</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>