|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>com.coveo</groupId> |
| 7 | + <artifactId>spring-boot-parameter-store-integration</artifactId> |
| 8 | + <version>1.0.0</version> |
| 9 | + |
| 10 | + <name>Spring Boot Parameter Store Integration</name> |
| 11 | + <description>An integration of Amazon Web Services' Systems Manager Parameter Store for Spring Boot's properties injection.</description> |
| 12 | + <url>https://github.com/coveo/spring-boot-parameter-store-integration</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + </properties> |
| 17 | + |
| 18 | + <licenses> |
| 19 | + <license> |
| 20 | + <name>MIT</name> |
| 21 | + <url>https://opensource.org/licenses/MIT</url> |
| 22 | + </license> |
| 23 | + </licenses> |
| 24 | + |
| 25 | + <developers> |
| 26 | + <developer> |
| 27 | + <name>Frederic Boutin</name> |
| 28 | + <organization>Coveo</organization> |
| 29 | + <organizationUrl>https://github.com/coveo</organizationUrl> |
| 30 | + </developer> |
| 31 | + </developers> |
| 32 | + |
| 33 | + <scm> |
| 34 | + <connection>scm:git:git@github.com:coveo/spring-boot-parameter-store-integration.git</connection> |
| 35 | + <developerConnection>scm:git:git@github.com:coveo/spring-boot-parameter-store-integration.git</developerConnection> |
| 36 | + <url>http://github.com/coveo/spring-boot-parameter-store-integration</url> |
| 37 | + </scm> |
| 38 | + |
| 39 | + <!-- <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> |
| 40 | + <artifactId>spring-boot-dependencies</artifactId> <version>1.5.14.RELEASE</version> |
| 41 | + <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> --> |
| 42 | + |
| 43 | + <dependencies> |
| 44 | + <dependency> |
| 45 | + <groupId>org.springframework.boot</groupId> |
| 46 | + <artifactId>spring-boot</artifactId> |
| 47 | + <version>1.5.14.RELEASE</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>com.amazonaws</groupId> |
| 51 | + <artifactId>aws-java-sdk-ssm</artifactId> |
| 52 | + <version>1.11.351</version> |
| 53 | + </dependency> |
| 54 | + |
| 55 | + <!-- Test libraries --> |
| 56 | + <dependency> |
| 57 | + <groupId>org.springframework.boot</groupId> |
| 58 | + <artifactId>spring-boot-starter-test</artifactId> |
| 59 | + <version>1.5.14.RELEASE</version> |
| 60 | + <scope>test</scope> |
| 61 | + </dependency> |
| 62 | + </dependencies> |
| 63 | + |
| 64 | + <build> |
| 65 | + <plugins> |
| 66 | + <plugin> |
| 67 | + <groupId>net.revelc.code.formatter</groupId> |
| 68 | + <artifactId>formatter-maven-plugin</artifactId> |
| 69 | + <version>2.7.3</version> |
| 70 | + <configuration> |
| 71 | + <configFile>${project.basedir}/src/main/resources/code-formatter.xml</configFile> |
| 72 | + <lineEnding>LF</lineEnding> |
| 73 | + </configuration> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <goals> |
| 77 | + <goal>format</goal> |
| 78 | + </goals> |
| 79 | + </execution> |
| 80 | + </executions> |
| 81 | + </plugin> |
| 82 | + <plugin> |
| 83 | + <groupId>org.apache.maven.plugins</groupId> |
| 84 | + <artifactId>maven-source-plugin</artifactId> |
| 85 | + <version>3.0.1</version> |
| 86 | + <configuration> |
| 87 | + </configuration> |
| 88 | + <executions> |
| 89 | + <execution> |
| 90 | + <id>attach-sources</id> |
| 91 | + <goals> |
| 92 | + <goal>jar</goal> |
| 93 | + </goals> |
| 94 | + </execution> |
| 95 | + </executions> |
| 96 | + </plugin> |
| 97 | + <plugin> |
| 98 | + <groupId>org.apache.maven.plugins</groupId> |
| 99 | + <artifactId>maven-compiler-plugin</artifactId> |
| 100 | + <version>3.7.0</version> |
| 101 | + <configuration> |
| 102 | + <source>1.8</source> |
| 103 | + <target>1.8</target> |
| 104 | + </configuration> |
| 105 | + </plugin> |
| 106 | + </plugins> |
| 107 | + |
| 108 | + <pluginManagement> |
| 109 | + <plugins> |
| 110 | + <plugin> |
| 111 | + <groupId>org.eclipse.m2e</groupId> |
| 112 | + <artifactId>lifecycle-mapping</artifactId> |
| 113 | + <version>1.0.0</version> |
| 114 | + <configuration> |
| 115 | + <lifecycleMappingMetadata> |
| 116 | + <pluginExecutions> |
| 117 | + <pluginExecution> |
| 118 | + <pluginExecutionFilter> |
| 119 | + <groupId> |
| 120 | + net.revelc.code.formatter |
| 121 | + </groupId> |
| 122 | + <artifactId> |
| 123 | + formatter-maven-plugin |
| 124 | + </artifactId> |
| 125 | + <versionRange> |
| 126 | + [2.7.2,) |
| 127 | + </versionRange> |
| 128 | + <goals> |
| 129 | + <goal>format</goal> |
| 130 | + </goals> |
| 131 | + </pluginExecutionFilter> |
| 132 | + <action> |
| 133 | + <ignore></ignore> |
| 134 | + </action> |
| 135 | + </pluginExecution> |
| 136 | + </pluginExecutions> |
| 137 | + </lifecycleMappingMetadata> |
| 138 | + </configuration> |
| 139 | + </plugin> |
| 140 | + </plugins> |
| 141 | + </pluginManagement> |
| 142 | + </build> |
| 143 | + |
| 144 | + <profiles> |
| 145 | + <profile> |
| 146 | + <id>release</id> |
| 147 | + <build> |
| 148 | + <plugins> |
| 149 | + <plugin> |
| 150 | + <groupId>org.apache.maven.plugins</groupId> |
| 151 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 152 | + <version>3.0.1</version> |
| 153 | + <executions> |
| 154 | + <execution> |
| 155 | + <id>attach-javadocs</id> |
| 156 | + <goals> |
| 157 | + <goal>jar</goal> |
| 158 | + </goals> |
| 159 | + </execution> |
| 160 | + </executions> |
| 161 | + </plugin> |
| 162 | + <plugin> |
| 163 | + <groupId>org.sonatype.plugins</groupId> |
| 164 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 165 | + <version>1.6.8</version> |
| 166 | + <extensions>true</extensions> |
| 167 | + <configuration> |
| 168 | + <serverId>ossrh</serverId> |
| 169 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 170 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 171 | + </configuration> |
| 172 | + </plugin> |
| 173 | + <plugin> |
| 174 | + <groupId>org.apache.maven.plugins</groupId> |
| 175 | + <artifactId>maven-gpg-plugin</artifactId> |
| 176 | + <version>1.6</version> |
| 177 | + <executions> |
| 178 | + <execution> |
| 179 | + <id>sign-artifacts</id> |
| 180 | + <phase>verify</phase> |
| 181 | + <goals> |
| 182 | + <goal>sign</goal> |
| 183 | + </goals> |
| 184 | + </execution> |
| 185 | + </executions> |
| 186 | + </plugin> |
| 187 | + </plugins> |
| 188 | + </build> |
| 189 | + </profile> |
| 190 | + </profiles> |
| 191 | + |
| 192 | + <distributionManagement> |
| 193 | + <snapshotRepository> |
| 194 | + <id>ossrh</id> |
| 195 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 196 | + </snapshotRepository> |
| 197 | + <repository> |
| 198 | + <id>ossrh</id> |
| 199 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 200 | + </repository> |
| 201 | + </distributionManagement> |
| 202 | +</project> |
0 commit comments