|
| 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/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.microsoft.azure</groupId> |
| 5 | + <artifactId>adal4jsample</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <name>adal4jsample</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + <properties> |
| 11 | + <spring.version>3.0.5.RELEASE</spring.version> |
| 12 | + </properties> |
| 13 | + |
| 14 | + <dependencies> |
| 15 | + <dependency> |
| 16 | + <groupId>com.microsoft.azure</groupId> |
| 17 | + <artifactId>adal4j</artifactId> |
| 18 | + <version>1.1.1</version> |
| 19 | + </dependency> |
| 20 | + <dependency> |
| 21 | + <groupId>com.nimbusds</groupId> |
| 22 | + <artifactId>oauth2-oidc-sdk</artifactId> |
| 23 | + <version>4.5</version> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>org.json</groupId> |
| 27 | + <artifactId>json</artifactId> |
| 28 | + <version>20090211</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>javax.servlet</groupId> |
| 32 | + <artifactId>javax.servlet-api</artifactId> |
| 33 | + <version>3.0.1</version> |
| 34 | + <scope>provided</scope> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.slf4j</groupId> |
| 38 | + <artifactId>slf4j-log4j12</artifactId> |
| 39 | + <version>1.7.5</version> |
| 40 | + </dependency> |
| 41 | + <!-- Spring 3 dependencies --> |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework</groupId> |
| 44 | + <artifactId>spring-core</artifactId> |
| 45 | + <version>${spring.version}</version> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.springframework</groupId> |
| 49 | + <artifactId>spring-web</artifactId> |
| 50 | + <version>${spring.version}</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>org.springframework</groupId> |
| 54 | + <artifactId>spring-webmvc</artifactId> |
| 55 | + <version>${spring.version}</version> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + </dependencies> |
| 59 | + |
| 60 | + <build> |
| 61 | + <finalName>sample-for-adal4j</finalName> |
| 62 | + <plugins> |
| 63 | + <plugin> |
| 64 | + <groupId>org.apache.maven.plugins</groupId> |
| 65 | + <artifactId>maven-compiler-plugin</artifactId> |
| 66 | + <configuration> |
| 67 | + <source>1.7</source> |
| 68 | + <target>1.7</target> |
| 69 | + <encoding>UTF-8</encoding> |
| 70 | + </configuration> |
| 71 | + </plugin> |
| 72 | + <plugin> |
| 73 | + <groupId>org.apache.maven.plugins</groupId> |
| 74 | + <artifactId>maven-war-plugin</artifactId> |
| 75 | + <version>2.4</version> |
| 76 | + <configuration> |
| 77 | + <warName>${project.artifactId}</warName> |
| 78 | + <source>${project.basedir}\src</source> |
| 79 | + <target>${maven.compiler.target}</target> |
| 80 | + <encoding>utf-8</encoding> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + <plugin> |
| 84 | + <groupId>org.apache.maven.plugins</groupId> |
| 85 | + <artifactId>maven-dependency-plugin</artifactId> |
| 86 | + <executions> |
| 87 | + <execution> |
| 88 | + <id>install</id> |
| 89 | + <phase>install</phase> |
| 90 | + <goals> |
| 91 | + <goal>sources</goal> |
| 92 | + </goals> |
| 93 | + </execution> |
| 94 | + </executions> |
| 95 | + </plugin> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.maven.plugins</groupId> |
| 98 | + <artifactId>maven-resources-plugin</artifactId> |
| 99 | + <version>2.5</version> |
| 100 | + <configuration> |
| 101 | + <encoding>UTF-8</encoding> |
| 102 | + </configuration> |
| 103 | + </plugin> |
| 104 | + </plugins> |
| 105 | + </build> |
| 106 | + |
| 107 | +</project> |
0 commit comments