nixer-plugin-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.nixer</groupId> <artifactId>nixer-plugin-example</artifactId> <version>0.1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.nixer</groupId> <artifactId>nixer-plugin-example</artifactId> <version>0.1.0.0</version> <name>nixer-spring-plugin</name> <description>Nixer plugin for Spring framework</description> <url>https://github.com/nixer-io/nixer-spring-plugin</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>j-bron</id> <name>Jan Broniowski</name> <email>jan@broniow.ski</email> </developer> <developer> <id>gcwiak</id> <name>Grzegorz Ćwiak</name> <email>grzegorz.cwiak@crosswordcybersecurity.com </email> </developer> <developer> <id>smifun</id> <name>Kamil Wójcik</name> <email>kamil.wojcik@crosswordcybersecurity.com </email> </developer> </developers> <scm> <connection>scm:git:git://github.com:nixer-io/nixer-spring-plugin.git</connection> <developerConnection>scm:git:git@github.com:nixer-io/nixer-spring-plugin.git</developerConnection> <url>https://github.com/nixer-io/nixer-spring-plugin</url> </scm> <dependencies> <dependency> <groupId>io.nixer</groupId> <artifactId>nixer-plugin-core</artifactId> <version>0.1.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.nixer</groupId> <artifactId>nixer-plugin-captcha</artifactId> <version>0.1.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.nixer</groupId> <artifactId>nixer-plugin-pwned-check</artifactId> <version>0.1.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-influx</artifactId> <version>1.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>runtime</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.1.6.RELEASE</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>