spring-plugin-loader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.zorin95670</groupId> <artifactId>spring-plugin-loader</artifactId> <version>0.2.1</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> <groupId>io.github.zorin95670</groupId> <artifactId>spring-plugin-loader</artifactId> <version>0.2.1</version> <name>spring-plugin-loader</name> <description>A Spring Boot library for dynamically loading and registering plugins from external JARs at runtime. It automatically scans for Spring-annotated classes, loads plugin configuration, and integrates plugin beans into the main application context, enabling modular and extensible applications without including plugins in the main classpath.</description> <url>https://github.com/Zorin95670/spring-plugin-loader</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>Zorin95670</id> <name>Vincent MOITTIE</name> <email>moittie.vincent@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/Zorin95670/spring-plugin-loader.git</connection> <developerConnection>scm:git:ssh://git@github.com:Zorin95670/spring-plugin-loader.git</developerConnection> <url>https://github.com/Zorin95670/spring-plugin-loader</url> </scm> <properties> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <sonar.java.checkstyle.reportPaths>target/checkstyle-result.xml</sonar.java.checkstyle.reportPaths> <maven.compiler.target>${java.version}</maven.compiler.target> <sonar.projectKey>Zorin95670_spring-plugin-loader</sonar.projectKey> <sonar.projectName>spring-plugin-loader</sonar.projectName> <java.version>21</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sonar.organization>zorin95670</sonar.organization> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.3.5</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.plugin</groupId> <artifactId>spring-plugin-core</artifactId> <version>3.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>3.3.5</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.6.0</version> <configuration> <configLocation>${project.basedir}/checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>5.0.0.4389</version> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.1</version> <executions> <execution> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>