removed unnecessary dependencies

This commit is contained in:
benni 2012-11-19 16:02:14 +01:00
parent 49acafb88b
commit b66eeb59a6

87
pom.xml
View File

@ -1,42 +1,31 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.mbassy</groupId> <groupId>org.mbassy</groupId>
<artifactId>mbassador</artifactId> <artifactId>mbassador</artifactId>
<version>1.0.0.RC</version> <version>1.0.0.RC</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>mbassador</name> <name>mbassador</name>
<description>Mbassador is a fast and flexible message bus system that follows the publish subscribe pattern</description> <description>Mbassador is a fast and flexible message bus system that follows the publish subscribe pattern
</description>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.java.version>1.6</project.build.java.version> <project.build.java.version>1.6</project.build.java.version>
<github.url>file://${project.basedir}/maven</github.url> <github.url>file://${project.basedir}/maven</github.url>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.10</version> <version>4.10</version>
<scope>compile</scope> <scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.2</version>
</dependency> </dependency>
<dependency> </dependencies>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.2</version>
</dependency>
</dependencies>
<distributionManagement> <distributionManagement>
<repository> <repository>
@ -45,25 +34,25 @@
</repository> </repository>
</distributionManagement> </distributionManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <configuration>
<source>${project.build.java.version}</source> <source>${project.build.java.version}</source>
<target>${project.build.java.version}</target> <target>${project.build.java.version}</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<configuration> <configuration>
<skipTests>false</skipTests> <skipTests>false</skipTests>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>