|
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-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> |
| 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.1.0-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> |
88 | 88 | </project> |
0 commit comments