chillispot-radius-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.vzakharchenko</groupId> <artifactId>chillispot-radius-plugin</artifactId> <version>1.4.11</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>keycloak-plugins</artifactId> <groupId>com.github.vzakharchenko</groupId> <version>1.4.11</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>chillispot-radius-plugin</artifactId> <name>Chillispot Radius plugin</name> <description>Extension of Radius-plugin for working with Chillispot.</description> <properties> <checkStyleLocation>../../analizers</checkStyleLocation> <pmdLocation>${basedir}/../../analizers/</pmdLocation> <findBugsLocation>${basedir}/../../analizers/</findBugsLocation> <javadoc>${basedir}/../../analizers/javadoc</javadoc> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>radius-plugin</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>radius-plugin</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.5.0</version> <configuration> <descriptors> <descriptor>${javadoc}/build.xml</descriptor> </descriptors> <appendAssemblyId>true</appendAssemblyId> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>