|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 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 |
| - <parent> |
6 |
| - <groupId>com.microsoft.java</groupId> |
7 |
| - <artifactId>parent</artifactId> |
8 |
| - <version>0.0.1-SNAPSHOT</version> |
9 |
| - </parent> |
10 |
| - <artifactId>com.microsoft.java.debug.core</artifactId> |
11 |
| - <packaging>jar</packaging> |
12 |
| - <name>${base.name} :: Debugger Core</name> |
13 |
| - <properties> |
14 |
| - </properties> |
15 |
| - <build> |
16 |
| - <directory>target</directory> |
17 |
| - <outputDirectory>target/classes</outputDirectory> |
18 |
| - <testOutputDirectory>target/test-classes</testOutputDirectory> |
19 |
| - <sourceDirectory>src/main/java</sourceDirectory> |
20 |
| - <testSourceDirectory>src/test/java</testSourceDirectory> |
21 |
| - <plugins> |
22 |
| - <plugin> |
23 |
| - <groupId>org.apache.maven.plugins</groupId> |
24 |
| - <artifactId>maven-compiler-plugin</artifactId> |
25 |
| - <version>3.7.0</version> |
26 |
| - <configuration> |
27 |
| - <source>1.8</source> |
28 |
| - <target>1.8</target> |
29 |
| - </configuration> |
30 |
| - </plugin> |
31 |
| - <plugin> |
32 |
| - <groupId>org.apache.maven.plugins</groupId> |
33 |
| - <artifactId>maven-checkstyle-plugin</artifactId> |
34 |
| - </plugin> |
35 |
| - </plugins> |
36 |
| - </build> |
37 |
| - <dependencies> |
38 |
| - <dependency> |
39 |
| - <groupId>com.sun</groupId> |
40 |
| - <artifactId>tools</artifactId> |
41 |
| - <version>1.8</version> |
42 |
| - <scope>system</scope> |
43 |
| - <systemPath>${java.home}/../lib/tools.jar</systemPath> |
44 |
| - </dependency> |
45 |
| - <dependency> |
46 |
| - <groupId>org.apache.commons</groupId> |
47 |
| - <artifactId>commons-lang3</artifactId> |
48 |
| - <version>3.6</version> |
49 |
| - </dependency> |
50 |
| - <dependency> |
51 |
| - <groupId>com.google.code.gson</groupId> |
52 |
| - <artifactId>gson</artifactId> |
53 |
| - <version>2.7</version> |
54 |
| - </dependency> |
55 |
| - <dependency> |
56 |
| - <groupId>io.reactivex.rxjava2</groupId> |
57 |
| - <artifactId>rxjava</artifactId> |
58 |
| - <version>2.1.1</version> |
59 |
| - </dependency> |
60 |
| - <dependency> |
61 |
| - <groupId>org.reactivestreams</groupId> |
62 |
| - <artifactId>reactive-streams</artifactId> |
63 |
| - <version>1.0.0</version> |
64 |
| - </dependency> |
65 |
| - <!-- Dependencies for test --> |
66 |
| - <dependency> |
67 |
| - <groupId>junit</groupId> |
68 |
| - <artifactId>junit</artifactId> |
69 |
| - <version>4.12</version> |
70 |
| - <scope>test</scope> |
71 |
| - </dependency> |
72 |
| - <dependency> |
73 |
| - <groupId>org.easymock</groupId> |
74 |
| - <artifactId>easymock</artifactId> |
75 |
| - <version>3.4</version> |
76 |
| - <scope>test</scope> |
77 |
| - </dependency> |
78 |
| - </dependencies> |
| 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 | + <parent> |
| 6 | + <groupId>com.microsoft.java</groupId> |
| 7 | + <artifactId>parent</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + <artifactId>com.microsoft.java.debug.core</artifactId> |
| 11 | + <packaging>jar</packaging> |
| 12 | + <name>${base.name} :: Debugger Core</name> |
| 13 | + <properties> |
| 14 | + </properties> |
| 15 | + <build> |
| 16 | + <directory>target</directory> |
| 17 | + <outputDirectory>target/classes</outputDirectory> |
| 18 | + <testOutputDirectory>target/test-classes</testOutputDirectory> |
| 19 | + <sourceDirectory>src/main/java</sourceDirectory> |
| 20 | + <testSourceDirectory>src/test/java</testSourceDirectory> |
| 21 | + <plugins> |
| 22 | + <plugin> |
| 23 | + <groupId>org.apache.maven.plugins</groupId> |
| 24 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 25 | + </plugin> |
| 26 | + <plugin> |
| 27 | + <groupId>org.apache.maven.plugins</groupId> |
| 28 | + <artifactId>maven-compiler-plugin</artifactId> |
| 29 | + <version>3.7.0</version> |
| 30 | + <configuration> |
| 31 | + <source>1.8</source> |
| 32 | + <target>1.8</target> |
| 33 | + </configuration> |
| 34 | + </plugin> |
| 35 | + <plugin> |
| 36 | + <groupId>org.apache.maven.plugins</groupId> |
| 37 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 38 | + </plugin> |
| 39 | + </plugins> |
| 40 | + </build> |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>com.sun</groupId> |
| 44 | + <artifactId>tools</artifactId> |
| 45 | + <version>1.8</version> |
| 46 | + <scope>system</scope> |
| 47 | + <systemPath>${java.home}/../lib/tools.jar</systemPath> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.apache.commons</groupId> |
| 51 | + <artifactId>commons-lang3</artifactId> |
| 52 | + <version>3.6</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>com.google.code.gson</groupId> |
| 56 | + <artifactId>gson</artifactId> |
| 57 | + <version>2.7</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>io.reactivex.rxjava2</groupId> |
| 61 | + <artifactId>rxjava</artifactId> |
| 62 | + <version>2.1.1</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.reactivestreams</groupId> |
| 66 | + <artifactId>reactive-streams</artifactId> |
| 67 | + <version>1.0.0</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>commons-io</groupId> |
| 71 | + <artifactId>commons-io</artifactId> |
| 72 | + <version>2.5</version> |
| 73 | + </dependency> |
| 74 | + <!-- Dependencies for test --> |
| 75 | + <dependency> |
| 76 | + <groupId>junit</groupId> |
| 77 | + <artifactId>junit</artifactId> |
| 78 | + <version>4.12</version> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.easymock</groupId> |
| 83 | + <artifactId>easymock</artifactId> |
| 84 | + <version>3.4</version> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
| 87 | + </dependencies> |
79 | 88 | </project>
|
0 commit comments