plugin-loader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.opk</groupId>
<artifactId>plugin-loader</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.opk</groupId>
<artifactId>opk-parent</artifactId>
<version>15</version>
</parent>
<artifactId>plugin-loader</artifactId>
<version>1.0.1</version>
<name>Plugin Loader</name>
<description>A simple plugin loader, loading isolated plugins with their own classpath.
The application and the plugins share access to platform and service classes -- without a proxy or reflection.</description>
<url>https://github.com/opwvhk/plugin-loader/</url>
<inceptionYear>2024</inceptionYear>
<organization>
<name>Oscar Westra van Holthe - Kind</name>
<url>https://github.com/opwvhk/</url>
</organization>
<developers>
<developer>
<name>Oscar Westra van Holthe - Kind</name>
</developer>
</developers>
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<developerConnection>scm:git:git@github.com:opwvhk/plugin-loader.git</developerConnection>
<url>https://github.com/opwvhk/plugin-loader</url>
</scm>
<properties>
<!-- Build configurations -->
<maven.compiler.release>21</maven.compiler.release>
<junit-jupiter.version>5.10.2</junit-jupiter.version>
<org.slf4j.version>2.0.13</org.slf4j.version>
<maven.compiler.parameters>true</maven.compiler.parameters>
<!--default: false-->
<!-- Dependency versions -->
<junit-platform-engine.version>1.10.2</junit-platform-engine.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>6.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Making -->
<dependency>
<!-- Contains source & class annotations only: none of these annotations are available at runtime -->
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.1.0</version>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean verify</defaultGoal>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.14</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>