removed obsolete properties

This commit is contained in:
2018-08-20 22:47:58 +02:00
parent a526fd9e40
commit aee91af554

View File

@ -1,67 +1,63 @@
<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<artifactId>shared</artifactId> <artifactId>shared</artifactId>
<groupId>de.muehlencord</groupId> <groupId>de.muehlencord</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</parent> </parent>
<groupId>de.muehlencord.shared</groupId> <groupId>de.muehlencord.shared</groupId>
<artifactId>shared-jeeutil</artifactId> <artifactId>shared-jeeutil</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>shared-jeeutil</name> <name>shared-jeeutil</name>
<properties> <dependencies>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <dependency>
</properties> <groupId>com.inversoft</groupId>
<artifactId>prime-jwt</artifactId>
<dependencies> <version>1.3.0</version>
<dependency> </dependency>
<groupId>com.inversoft</groupId> <dependency>
<artifactId>prime-jwt</artifactId> <groupId>javax</groupId>
<version>1.3.0</version> <artifactId>javaee-api</artifactId>
</dependency> <scope>provided</scope>
<dependency> </dependency>
<groupId>javax</groupId> <dependency>
<artifactId>javaee-api</artifactId> <groupId>org.slf4j</groupId>
<scope>provided</scope> <artifactId>slf4j-api</artifactId>
</dependency> <scope>provided</scope>
<dependency> </dependency>
<groupId>org.slf4j</groupId> <dependency>
<artifactId>slf4j-api</artifactId> <groupId>org.hibernate</groupId>
<scope>provided</scope> <artifactId>hibernate-core</artifactId>
</dependency> <scope>provided</scope>
<dependency> </dependency>
<groupId>org.hibernate</groupId> <dependency>
<artifactId>hibernate-core</artifactId> <groupId>org.primefaces</groupId>
<scope>provided</scope> <artifactId>primefaces</artifactId>
</dependency> <type>jar</type>
<dependency> <scope>provided</scope>
<groupId>org.primefaces</groupId> </dependency>
<artifactId>primefaces</artifactId> <dependency>
<type>jar</type> <groupId>org.apache.shiro</groupId>
<scope>provided</scope> <artifactId>shiro-web</artifactId>
</dependency> <scope>provided</scope>
<dependency> </dependency>
<groupId>org.apache.shiro</groupId> </dependencies>
<artifactId>shiro-web</artifactId>
<scope>provided</scope> <build>
</dependency> <plugins>
</dependencies> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<build> <artifactId>maven-ejb-plugin</artifactId>
<plugins> <configuration>
<plugin> <ejbVersion>3.1</ejbVersion>
<groupId>org.apache.maven.plugins</groupId> </configuration>
<artifactId>maven-ejb-plugin</artifactId> </plugin>
<configuration> </plugins>
<ejbVersion>3.1</ejbVersion> </build>
</configuration>
</plugin> </project>
</plugins>
</build>
</project>