|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| 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 | + <parent> |
| 7 | + <groupId>org.springframework.boot</groupId> |
| 8 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 9 | + <version>1.5.4.RELEASE</version> |
| 10 | + <relativePath/> <!-- lookup parent from repository --> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <groupId>com.microsoft.azure</groupId> |
| 14 | + <artifactId>azure-ad-integration-spring-boot-autoconfigure-sample</artifactId> |
| 15 | + <version>0.0.1-SNAPSHOT</version> |
| 16 | + <packaging>jar</packaging> |
| 17 | + |
| 18 | + <name>Azure AD Spring Security Integration Spring Boot Autoconfigure Sample</name> |
| 19 | + <description>Azure AD Spring Security Integration Spring Boot Autoconfigure Sample</description> |
| 20 | + <url>https://github.com/Microsoft/azure-spring-boot-starters</url> |
| 21 | + |
| 22 | + <licenses> |
| 23 | + <license> |
| 24 | + <name>MIT</name> |
| 25 | + <url>https://github.com/Microsoft/azure-spring-boot-starters/blob/master/LICENSE</url> |
| 26 | + <distribution>repo</distribution> |
| 27 | + </license> |
| 28 | + </licenses> |
| 29 | + |
| 30 | + <developers> |
| 31 | + <developer> |
| 32 | + <id>yaweiw</id> |
| 33 | + <name>Yawei Wang</name> |
| 34 | + <email>yaweiw@microsoft.com</email> |
| 35 | + </developer> |
| 36 | + </developers> |
| 37 | + |
| 38 | + <scm> |
| 39 | + <connection>scm:git:git://github.com/Microsoft/azure-spring-boot-starters.git</connection> |
| 40 | + <developerConnection>scm:git:ssh://github.com:Microsoft/azure-spring-boot-starters.git</developerConnection> |
| 41 | + <url>https://github.com/Microsoft/azure-spring-boot-starters/tree/master</url> |
| 42 | + </scm> |
| 43 | + |
| 44 | + <dependencyManagement> |
| 45 | + <dependencies> |
| 46 | + <dependency> |
| 47 | + <groupId>com.microsoft.azure</groupId> |
| 48 | + <artifactId>azure-spring-boot-starter-bom</artifactId> |
| 49 | + <version>0.1.5</version> |
| 50 | + <type>pom</type> |
| 51 | + <scope>import</scope> |
| 52 | + </dependency> |
| 53 | + </dependencies> |
| 54 | + </dependencyManagement> |
| 55 | + |
| 56 | + <dependencies> |
| 57 | + <dependency> |
| 58 | + <groupId>org.springframework.boot</groupId> |
| 59 | + <artifactId>spring-boot-starter-web</artifactId> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.springframework.boot</groupId> |
| 63 | + <artifactId>spring-boot-starter</artifactId> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>org.springframework.security</groupId> |
| 67 | + <artifactId>spring-security-config</artifactId> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.springframework.security.oauth</groupId> |
| 71 | + <artifactId>spring-security-oauth2</artifactId> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>com.microsoft.azure</groupId> |
| 75 | + <artifactId>azure-ad-integration-spring-boot-autoconfigure</artifactId> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 79 | + <artifactId>jackson-core</artifactId> |
| 80 | + </dependency> |
| 81 | + </dependencies> |
| 82 | + |
| 83 | + <properties> |
| 84 | + <java.version>1.8</java.version> |
| 85 | + <project.rootdir>${project.basedir}/../..</project.rootdir> |
| 86 | + <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version> |
| 87 | + <maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version> |
| 88 | + <findbugs-maven-plugin.version>3.0.0</findbugs-maven-plugin.version> |
| 89 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 90 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 91 | + </properties> |
| 92 | + |
| 93 | + <build> |
| 94 | + <pluginManagement> |
| 95 | + <plugins> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.maven.plugins</groupId> |
| 98 | + <artifactId>maven-compiler-plugin</artifactId> |
| 99 | + <version>${maven-compiler-plugin.version}</version> |
| 100 | + </plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.apache.maven.plugins</groupId> |
| 103 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 104 | + <version>${maven-checkstyle-plugin.version}</version> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <groupId>org.codehaus.mojo</groupId> |
| 108 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 109 | + <version>${findbugs-maven-plugin.version}</version> |
| 110 | + </plugin> |
| 111 | + </plugins> |
| 112 | + </pluginManagement> |
| 113 | + <plugins> |
| 114 | + <plugin> |
| 115 | + <groupId>org.apache.maven.plugins</groupId> |
| 116 | + <artifactId>maven-compiler-plugin</artifactId> |
| 117 | + <configuration> |
| 118 | + <source>${java.version}</source> |
| 119 | + <target>${java.version}</target> |
| 120 | + </configuration> |
| 121 | + </plugin> |
| 122 | + <plugin> |
| 123 | + <groupId>org.apache.maven.plugins</groupId> |
| 124 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 125 | + <executions> |
| 126 | + <execution> |
| 127 | + <id>validate</id> |
| 128 | + <phase>validate</phase> |
| 129 | + <configuration> |
| 130 | + <configLocation>${project.rootdir}/common/config/checkstyle.xml</configLocation> |
| 131 | + <encoding>UTF-8</encoding> |
| 132 | + <consoleOutput>true</consoleOutput> |
| 133 | + <failsOnError>true</failsOnError> |
| 134 | + <failOnViolation>true</failOnViolation> |
| 135 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 136 | + </configuration> |
| 137 | + <goals> |
| 138 | + <goal>check</goal> |
| 139 | + </goals> |
| 140 | + </execution> |
| 141 | + </executions> |
| 142 | + <configuration> |
| 143 | + <linkXRef>false</linkXRef> |
| 144 | + </configuration> |
| 145 | + <inherited>true</inherited> |
| 146 | + </plugin> |
| 147 | + <plugin> |
| 148 | + <groupId>org.codehaus.mojo</groupId> |
| 149 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 150 | + <configuration> |
| 151 | + <effort>Max</effort> |
| 152 | + <threshold>Low</threshold> |
| 153 | + <xmlOutput>true</xmlOutput> |
| 154 | + <findbugsXmlOutputDirectory>${project.build.directory}/findbugs |
| 155 | + </findbugsXmlOutputDirectory> |
| 156 | + <excludeFilterFile>${project.rootdir}/common/config/findbugs-exclude.xml</excludeFilterFile> |
| 157 | + </configuration> |
| 158 | + <dependencies> |
| 159 | + <dependency> |
| 160 | + <groupId>org.apache.ant</groupId> |
| 161 | + <artifactId>ant</artifactId> |
| 162 | + <version>1.9.4</version> |
| 163 | + </dependency> |
| 164 | + </dependencies> |
| 165 | + <executions> |
| 166 | + <execution> |
| 167 | + <phase>compile</phase> |
| 168 | + <goals> |
| 169 | + <goal>check</goal> |
| 170 | + </goals> |
| 171 | + </execution> |
| 172 | + </executions> |
| 173 | + </plugin> |
| 174 | + <plugin> |
| 175 | + <groupId>org.springframework.boot</groupId> |
| 176 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 177 | + <executions> |
| 178 | + <execution> |
| 179 | + <goals> |
| 180 | + <goal>repackage</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + </plugins> |
| 186 | + </build> |
| 187 | + |
| 188 | + |
| 189 | +</project> |
0 commit comments