reverse-proxy-auth-sonar-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.trajano.sonar.plugins</groupId> <artifactId>reverse-proxy-auth-sonar-plugin</artifactId> <version>6.0.2.52</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.trajano</groupId> <artifactId>trajano</artifactId> <version>13</version> </parent> <groupId>net.trajano.sonar.plugins</groupId> <artifactId>reverse-proxy-auth-sonar-plugin</artifactId> <version>6.0.2.52</version> <packaging>sonar-plugin</packaging> <name>Reverse Proxy Authenticator</name> <description>Reverse Proxy Authenticator plugin for Sonar.</description> <url>http://site.trajano.net/reverse-proxy-auth-sonar-plugin</url> <scm> <connection>scm:git:https://github.com/trajano/reverse-proxy-auth-sonar-plugin</connection> <developerConnection>scm:git:https://github.com/trajano/reverse-proxy-auth-sonar-plugin.git</developerConnection> <tag>reverse-proxy-auth-sonar-plugin-6.0.2.52</tag> <url>https://github.com/trajano/reverse-proxy-auth-sonar-plugin</url> </scm> <distributionManagement> <site> <id>trajano-site</id> <name>Trajano Maven Sites</name> <url>sftp://site.trajano.net:6022/s/${module.id}/</url> </site> </distributionManagement> <properties> <jdk.version>1.8</jdk.version> <module.id>reverse-proxy-auth-sonar-plugin</module.id> <surefire.version>2.18.1</surefire.version> </properties> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>net.trajano.commons</groupId> <artifactId>commons-testing</artifactId> <version>1.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${surefire.version}</version> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> </goals> </execution> <execution> <id>verify</id> <goals> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-scm-plugin</artifactId> <configuration> <providerImplementations> <git>jgit</git> </providerImplementations> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.version}</version> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>${surefire.version}</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.4.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.4</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> </plugin> <plugin> <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <version>1.17</version> <extensions>true</extensions> <configuration> <pluginKey>reverseproxyauth</pluginKey> <pluginClass>net.trajano.sonar.plugins.reverseproxyauth.ReverseProxyAuthPlugin</pluginClass> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>2.12</version> </extension> </extensions> </build> <reporting> <plugins> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </reporting> <profiles> <profile> <id>m2e</id> <activation> <property> <name>m2e.version</name> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <versionRange>[1.9,)</versionRange> <goals> <goal>check-dependencies</goal> </goals> </pluginExecutionFilter> <action> <ignore/> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>net.trajano.mojo</groupId> <artifactId>m2e-codestyle-maven-plugin</artifactId> <executions> <execution> <goals> <goal>configure</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>