avro-kotlin-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.toolisticon.kotlin.avro.maven</groupId> <artifactId>avro-kotlin-maven-plugin</artifactId> <version>1.12.5.2</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>io.toolisticon.kotlin.avro._</groupId> <artifactId>avro-kotlin-parent</artifactId> <version>1.12.5.2</version> <relativePath>../_build/parent/pom.xml</relativePath> </parent> <groupId>io.toolisticon.kotlin.avro.maven</groupId> <artifactId>avro-kotlin-maven-plugin</artifactId> <name>maven: ${project.artifactId}</name> <packaging>maven-plugin</packaging> <properties> <maven.version>3.9.10</maven.version> <kotlin-mojo-helper.version>0.1.0</kotlin-mojo-helper.version> <maven-plugin-api.version>3.9.10</maven-plugin-api.version> <maven-plugin-annotations.version>3.15.1</maven-plugin-annotations.version> <mojo-executor.version>2.4.0</mojo-executor.version> <ktfmt.version>0.56</ktfmt.version> <itf.version>0.13.1</itf.version> </properties> <dependencies> <dependency> <groupId>io.toolisticon.kotlin.avro</groupId> <artifactId>avro-kotlin-generator</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.toolisticon.kotlin.avro</groupId> <artifactId>avro-kotlin-serialization</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.toolisticon.kotlin.generation</groupId> <artifactId>kotlin-code-generation</artifactId> <version>${kotlin-code-generation.version}</version> </dependency> <!-- MAVEN --> <dependency> <!-- kotlin helper methods --> <groupId>io.toolisticon.maven</groupId> <artifactId>kotlin-mojo-helper</artifactId> <version>${kotlin-mojo-helper.version}</version> <exclusions> <exclusion> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-common</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven-plugin-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven-plugin-annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>file-management</artifactId> <version>3.2.0</version> </dependency> <dependency> <groupId>com.facebook</groupId> <artifactId>ktfmt</artifactId> <version>${ktfmt.version}</version> </dependency> <dependency> <groupId>com.google.auto</groupId> <artifactId>auto-common</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>io.toolisticon.kotlin.avro.test</groupId> <artifactId>avro-kotlin-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- ITF --> <dependency> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-jupiter-extension</artifactId> <version>${itf.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-assertj</artifactId> <version>${itf.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <!-- MAVEN PLUGIN --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.15.1</version> <configuration> <!-- <extractors>--> <!-- <extractor>kotlin</extractor>--> <!-- </extractors>--> </configuration> <executions> <execution> <id>default-descriptor</id> <phase>process-classes</phase> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> <!-- <dependencies>--> <!-- <dependency>--> <!-- <groupId>com.github.gantsign.maven.plugin-tools</groupId>--> <!-- <artifactId>kotlin-maven-plugin-tools</artifactId>--> <!-- <version>1.1.0</version>--> <!--<!– <version>development-SNAPSHOT</version>–>--> <!-- </dependency>--> <!-- </dependencies>--> </plugin> <plugin> <groupId>com.soebes.itf.jupiter.extension</groupId> <artifactId>itf-maven-plugin</artifactId> <version>${itf.version}</version> <executions> <execution> <id>installing</id> <phase>pre-integration-test</phase> <goals> <goal>install</goal> <goal>resources-its</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>integration-test</id> <phase>integration-test</phase> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>