graphitron-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>no.sikt</groupId> <artifactId>graphitron-maven-plugin</artifactId> <version>5.1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>no.sikt</groupId> <artifactId>graphitron-parent</artifactId> <version>5.1.2</version> </parent> <artifactId>graphitron-maven-plugin</artifactId> <version>5.1.2</version> <packaging>maven-plugin</packaging> <name>${project.groupId}:${project.artifactId}</name> <url>https://github.com/sikt-no/graphitron</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <properties> <outputDirectory>${project.build.directory}/generated-sources</outputDirectory> <processedSchemaDirectory>${project.build.directory}/generated-resources/graphql_transformer</processedSchemaDirectory> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>graphitron-java-codegen</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>no.sikt</groupId> <artifactId>graphitron-schema-transform</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.kobylynskyi</groupId> <artifactId>graphql-java-codegen</artifactId> <version>5.10.0</version> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.34</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-mojo</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>