.compiler-maven-plugin.0.6.1.source-code.dependency-reduced-pom.xml Maven / Gradle / Ivy
<?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"> <parent> <artifactId>platform-parent</artifactId> <groupId>cz.o2.proxima</groupId> <version>0.6.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>compiler-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>${project.groupId}:${project.artifactId}</name> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>compile</phase> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven.shade.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <artifactSet> <excludes> <exclude>cz.o2.proxima:proxima-core</exclude> </excludes> </artifactSet> <relocations> <relocation> <pattern>com.google.common.</pattern> <shadedPattern>${coreShade}.com.google.common.</shadedPattern> </relocation> </relocations> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>cz.o2.proxima</groupId> <artifactId>proxima-core</artifactId> <version>0.6.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.16</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.6.28</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>cz.o2.proxima</groupId> <artifactId>proxima-core</artifactId> <version>0.6.1</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>cz.o2.proxima</groupId> <artifactId>proxima-direct-compiler-plugin</artifactId> <version>0.6.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>proxima-direct-core</artifactId> <groupId>cz.o2.proxima</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.30</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy