pf4j-kotlin-symbol-processing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>care.better.pf4j</groupId> <artifactId>pf4j-kotlin-symbol-processing</artifactId> <version>2.1.20-1.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2023 Better Ltd (www.better.care) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <artifactId>pf4j-kotlin-symbol-processing</artifactId> <groupId>care.better.pf4j</groupId> <version>2.1.20-1.0.2</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Extension for the kotlin-maven-plugin to support Kotlin Symbol Processing (KSP) that processes Extension annotation used by PF4J framework</description> <url>https://github.com/better-care/pf4j-kotlin-symbol-processing</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <pf4j.version>3.13.0</pf4j.version> <kotlin.version>2.1.20</kotlin.version> <symbol-processing-api.version>2.1.20-1.0.32</symbol-processing-api.version> <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-nexus-staging-plugin.version>1.6.13</maven-nexus-staging-plugin.version> <maven-dokka-plugin.version>1.9.20</maven-dokka-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.pf4j</groupId> <artifactId>pf4j</artifactId> <version>${pf4j.version}</version> </dependency> <dependency> <groupId>com.google.devtools.ksp</groupId> <artifactId>symbol-processing-api</artifactId> <version>${symbol-processing-api.version}</version> </dependency> </dependencies> <build> <sourceDirectory>src/main/kotlin</sourceDirectory> <testSourceDirectory>src/test/kotlin</testSourceDirectory> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> </execution> </executions> <configuration> <jvmTarget>${maven.compiler.target}</jvmTarget> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce</id> <configuration> <rules> <dependencyConvergence/> <requireMavenVersion> <version>[3.6.2,)</version> </requireMavenVersion> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <optimize>true</optimize> <encoding>utf-8</encoding> <showWarnings>true</showWarnings> <parameters>true</parameters> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>central-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>${maven-dokka-plugin.version}</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> <configuration> <sourceLinks> <link> <url>https://github.com/better-care/ehr-common</url> <lineSuffix>#L</lineSuffix> </link> </sourceLinks> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${maven-nexus-staging-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com:better-care/pf4j-kotlin-symbol-processing.git</connection> <developerConnection>scm:git:ssh://github.com:better-care/pf4j-kotlin-symbol-processing.git</developerConnection> <url>https://github.com/better-care/pf4j-kotlin-symbol-processing/tree/master</url> </scm> <developers> <developer> <name>Primož Delopst</name> <email>primoz.delopst@better.care</email> <organization>Better Ltd</organization> <organizationUrl>https://www.better.care/</organizationUrl> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>