|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>com.amazonaws.secretsmanager</groupId> |
| 6 | + <artifactId>aws-secretsmanager-caching-java</artifactId> |
| 7 | + <version>1.0.0</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + |
| 11 | + <name>aws-secretsmanager-caching-java</name> |
| 12 | + <description>AWS Secrets Manager caching client for Java</description> |
| 13 | + <url>https://github.com/aws/aws-secretsmanager-caching-java</url> |
| 14 | + |
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>Apache License, Version 2.0</name> |
| 18 | + <url>https://aws.amazon.com/apache2.0</url> |
| 19 | + <distribution>repo</distribution> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <id>amazonwebservices</id> |
| 26 | + <organization>Amazon Web Services</organization> |
| 27 | + <organizationUrl>https://aws.amazon.com</organizationUrl> |
| 28 | + <roles> |
| 29 | + <role>developer</role> |
| 30 | + </roles> |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + |
| 34 | + <scm> |
| 35 | + <url>https://github.com/aws/aws-secretsmanager-caching-java.git</url> |
| 36 | + </scm> |
| 37 | + |
| 38 | + <properties> |
| 39 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 40 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 41 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | + <checkstyle.plugin.version>3.0.0</checkstyle.plugin.version> |
| 43 | + <findbugs.plugin.version>3.0.4</findbugs.plugin.version> |
| 44 | + </properties> |
| 45 | + |
| 46 | + <dependencies> |
| 47 | + <dependency> |
| 48 | + <groupId>com.amazonaws</groupId> |
| 49 | + <artifactId>aws-java-sdk-secretsmanager</artifactId> |
| 50 | + <version>1.11.409</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>org.testng</groupId> |
| 54 | + <artifactId>testng</artifactId> |
| 55 | + <version>6.3.1</version> |
| 56 | + <scope>test</scope> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.mockito</groupId> |
| 60 | + <artifactId>mockito-all</artifactId> |
| 61 | + <version>1.10.19</version> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + <build> |
| 66 | + <plugins> |
| 67 | + <plugin> |
| 68 | + <groupId>org.apache.maven.plugins</groupId> |
| 69 | + <artifactId>maven-compiler-plugin</artifactId> |
| 70 | + <version>3.8.0</version> |
| 71 | + <configuration> |
| 72 | + <source>1.8</source> |
| 73 | + <target>1.8</target> |
| 74 | + <compilerArgument>-Xlint:all</compilerArgument> |
| 75 | + <showWarnings>true</showWarnings> |
| 76 | + <showDeprecation>true</showDeprecation> |
| 77 | + </configuration> |
| 78 | + </plugin> |
| 79 | + <plugin> |
| 80 | + <groupId>org.apache.maven.plugins</groupId> |
| 81 | + <artifactId>maven-source-plugin</artifactId> |
| 82 | + <version>3.0.1</version> |
| 83 | + <executions> |
| 84 | + <execution> |
| 85 | + <id>attach-sources</id> |
| 86 | + <goals> |
| 87 | + <goal>jar</goal> |
| 88 | + </goals> |
| 89 | + </execution> |
| 90 | + </executions> |
| 91 | + </plugin> |
| 92 | + <plugin> |
| 93 | + <groupId>org.apache.maven.plugins</groupId> |
| 94 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 95 | + <version>3.0.1</version> |
| 96 | + <executions> |
| 97 | + <execution> |
| 98 | + <id>attach-javadocs</id> |
| 99 | + <goals> |
| 100 | + <goal>jar</goal> |
| 101 | + </goals> |
| 102 | + </execution> |
| 103 | + </executions> |
| 104 | + </plugin> |
| 105 | + <plugin> |
| 106 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 107 | + <version>${checkstyle.plugin.version}</version> |
| 108 | + <configuration> |
| 109 | + <configLocation>${basedir}/config/checkstyle/checkstyle.xml</configLocation> |
| 110 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 111 | + <consoleOutput>true</consoleOutput> |
| 112 | + <failsOnError>true</failsOnError> |
| 113 | + <linkXRef>false</linkXRef> |
| 114 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 115 | + </configuration> |
| 116 | + <executions> |
| 117 | + <execution> |
| 118 | + <id>validate</id> |
| 119 | + <phase>validate</phase> |
| 120 | + <goals> |
| 121 | + <goal>check</goal> |
| 122 | + </goals> |
| 123 | + </execution> |
| 124 | + </executions> |
| 125 | + </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.codehaus.mojo</groupId> |
| 128 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 129 | + <version>${findbugs.plugin.version}</version> |
| 130 | + <configuration> |
| 131 | + <effort>Max</effort> |
| 132 | + <threshold>Low</threshold> |
| 133 | + <xmlOutput>true</xmlOutput> |
| 134 | + </configuration> |
| 135 | + <executions> |
| 136 | + <execution> |
| 137 | + <id>analyze-compile</id> |
| 138 | + <phase>compile</phase> |
| 139 | + <goals> |
| 140 | + <goal>check</goal> |
| 141 | + </goals> |
| 142 | + </execution> |
| 143 | + </executions> |
| 144 | + </plugin> |
| 145 | + </plugins> |
| 146 | + </build> |
| 147 | + |
| 148 | +</project> |
0 commit comments