jqassistant-context-mapper-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jqassistant.contrib.plugin</groupId> <artifactId>jqassistant-context-mapper-plugin</artifactId> <version>1.1.0</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jqassistant.contrib.common</groupId> <artifactId>parent</artifactId> <version>1.12.0</version> </parent> <groupId>org.jqassistant.contrib.plugin</groupId> <artifactId>jqassistant-context-mapper-plugin</artifactId> <version>1.1.0</version> <url>http://jqassistant.org/</url> <description> Context Mapper Plugin for jQAssistant. </description> <organization> <name>BUSCHMAIS GbR</name> <url>http://www.buschmais.com</url> </organization> <developers> <developer> <id>StephanPirnbaum</id> <name>Stephan Pirnbaum</name> <email>stephan.pirnbaum@buschmais.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/jqassistant-contrib/jqassistant-context-mapper-plugin.git</connection> <developerConnection>scm:git:https://github.com/jqassistant-contrib/jqassistant-context-mapper-plugin.git </developerConnection> <url>https://github.com/jqassistant-contrib/jqassistant-context-mapper-plugin</url> <tag>1.1.0</tag> </scm> <dependencies> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>scanner</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>report</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.plugin</groupId> <artifactId>common</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.contextmapper</groupId> <artifactId>context-mapper-dsl</artifactId> <version>6.6.1</version> <exclusions> <exclusion> <!-- Exclusion added to remove transitive dependency to Equinox, which requires Java 11 --> <groupId>org.contextmapper</groupId> <artifactId>henshin-interpreter</artifactId> </exclusion> <!-- Exclusion added since Neo4j is bringing in a conflicting version --> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk14</artifactId> </exclusion> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bcmail-jdk14</artifactId> </exclusion> <!-- Avoid further class loading conflicts --> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>log4j</artifactId> <groupId>log4j</groupId> </exclusion> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>asm-commons</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.contextmapper</groupId> <artifactId>context-map-generator</artifactId> <version>1.2.1</version> <exclusions> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <version>${org.slf4j.version}</version> <exclusions> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.20</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>test</artifactId> </dependency> <dependency> <groupId>com.buschmais.jqassistant.core</groupId> <artifactId>store</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>com.buschmais.jqassistant.neo4jserver</groupId> <artifactId>neo4jv3</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.buschmais.jqassistant.plugin</groupId> <artifactId>common</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <version>1.18.20.0</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>delombok</goal> </goals> <configuration> <addOutputDirectory>false</addOutputDirectory> <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <sourcepath>${project.build.directory}/generated-sources/delombok</sourcepath> </configuration> </plugin> </plugins> </build> </project>