Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 166203
Collapse All | Expand All

(-)pom.xml (+77 lines)
Added Link Here
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5
    <modelVersion>4.0.0</modelVersion>
6
    <groupId>org.eclipse</groupId>
7
    <artifactId>mylyn</artifactId>
8
    <version>2.0.0-v20070706-2000</version>
9
    <packaging>jar</packaging>
10
    <name>Mylyn Core</name>
11
    <url>http://www.eclipse.org/mylyn</url>
12
    <description>
13
        Eclipse Mylyn is a task-focused UI that reduces information overload and
14
        makes multi-tasking easy.
15
    </description>
16
17
    <organization>
18
        <name>Eclipse Foundation</name>
19
        <url>http://www.eclipse.org</url>
20
    </organization>
21
22
    <licenses>
23
        <license>
24
            <name>Eclipse Public License</name>
25
            <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
26
            <distribution>repo</distribution>
27
        </license>
28
    </licenses>
29
30
    <scm>
31
        <connection>
32
            scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn
33
        </connection>
34
        <url>
35
            http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn/?root&#61;Tools_Project
36
        </url>
37
    </scm>
38
39
    <issueManagement>
40
        <system>Bugzilla</system>
41
        <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url>
42
    </issueManagement>
43
44
    <build>
45
        <resources>
46
            <resource>
47
                <directory>.</directory>
48
                <includes>
49
                    <include>about.html</include>
50
                    <include>about.ini</include>
51
                    <include>feature.gif</include>
52
                </includes>
53
            </resource>
54
        </resources>
55
        <plugins>
56
            <plugin>
57
                <groupId>org.apache.maven.plugins</groupId>
58
                <artifactId>maven-jar-plugin</artifactId>
59
                <configuration>
60
                    <archive>
61
                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
62
                    </archive>
63
                </configuration>
64
            </plugin>
65
        </plugins>
66
    </build>
67
68
    <reporting>
69
        <plugins>
70
            <plugin>
71
                <groupId>org.apache.maven.plugins</groupId>
72
                <artifactId>maven-changelog-plugin</artifactId>
73
            </plugin>
74
        </plugins>
75
    </reporting>
76
77
</project>
(-)pom.xml (+127 lines)
Added Link Here
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5
    <modelVersion>4.0.0</modelVersion>
6
    <groupId>org.eclipse.mylyn.web</groupId>
7
    <artifactId>core</artifactId>
8
    <version>2.0.0-v20070706-2000</version>
9
    <packaging>jar</packaging>
10
    <name>Mylyn Web Core</name>
11
    <url>http://www.eclipse.org/mylyn</url>
12
    <description>
13
        Eclipse Mylyn is a task-focused UI that reduces information overload and
14
        makes multi-tasking easy.
15
    </description>
16
17
    <organization>
18
        <name>Eclipse Foundation</name>
19
        <url>http://www.eclipse.org</url>
20
    </organization>
21
22
    <licenses>
23
        <license>
24
            <name>Eclipse Public License</name>
25
            <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
26
            <distribution>repo</distribution>
27
        </license>
28
    </licenses>
29
30
    <scm>
31
        <connection>
32
            scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn.web.core
33
        </connection>
34
        <url>
35
            http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.web.core/?root&#61;Tools_Project
36
        </url>
37
    </scm>
38
39
    <issueManagement>
40
        <system>Bugzilla</system>
41
        <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url>
42
    </issueManagement>
43
44
    <repositories>
45
        <repository>
46
            <id>central-eclipse</id>
47
            <name>Central Eclipse Repository</name>
48
            <url>http://repo1.maven.org/eclipse</url>
49
        </repository>
50
    </repositories>
51
52
    <dependencies>
53
        <dependency>
54
            <groupId>commons-httpclient</groupId>
55
            <artifactId>commons-httpclient</artifactId>
56
            <version>3.0.1</version>
57
            <scope>compile</scope>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.eclipse</groupId>
61
            <artifactId>osgi</artifactId>
62
            <version>3.3.0-v20070530</version>
63
            <scope>compile</scope>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.eclipse.core</groupId>
67
            <artifactId>net</artifactId>
68
            <version>1.0.0-I20070531</version>
69
            <scope>compile</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.eclipse.core</groupId>
73
            <artifactId>runtime</artifactId>
74
            <version>3.3.100-v20070530</version>
75
            <scope>compile</scope>
76
        </dependency>
77
    </dependencies>
78
79
    <build>
80
        <sourceDirectory>src</sourceDirectory>
81
        <resources>
82
            <resource>
83
                <directory>.</directory>
84
                <includes>
85
                    <include>about.html</include>
86
                    <include>lib-httpclient/*.jar</include>
87
                    <include>lib-rome/*.jar</include>
88
                    <include>lib-xmlrpc/*.jar</include>
89
                </includes>
90
            </resource>
91
        </resources>
92
        <plugins>
93
            <plugin>
94
                <groupId>org.apache.maven.plugins</groupId>
95
                <artifactId>maven-compiler-plugin</artifactId>
96
                <configuration>
97
                    <showDeprecation>true</showDeprecation>
98
                    <source>1.5</source>
99
                    <target>1.5</target>
100
                </configuration>
101
            </plugin>
102
            <plugin>
103
                <groupId>org.apache.maven.plugins</groupId>
104
                <artifactId>maven-jar-plugin</artifactId>
105
                <configuration>
106
                    <archive>
107
                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
108
                    </archive>
109
                </configuration>
110
            </plugin>
111
        </plugins>
112
    </build>
113
114
    <reporting>
115
        <plugins>
116
            <plugin>
117
                <groupId>org.apache.maven.plugins</groupId>
118
                <artifactId>maven-changelog-plugin</artifactId>
119
            </plugin>
120
            <plugin>
121
                <groupId>org.apache.maven.plugins</groupId>
122
                <artifactId>maven-jxr-plugin</artifactId>
123
            </plugin>
124
        </plugins>
125
    </reporting>
126
127
</project>
(-)pom.xml (+112 lines)
Added Link Here
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5
    <modelVersion>4.0.0</modelVersion>
6
    <groupId>org.eclipse.mylyn.monitor</groupId>
7
    <artifactId>core</artifactId>
8
    <version>2.0.0-v20070706-2000</version>
9
    <packaging>jar</packaging>
10
    <name>Mylyn Monitor Core</name>
11
    <url>http://www.eclipse.org/mylyn</url>
12
    <description>
13
        Eclipse Mylyn is a task-focused UI that reduces information overload and
14
        makes multi-tasking easy.
15
    </description>
16
17
    <organization>
18
        <name>Eclipse Foundation</name>
19
        <url>http://www.eclipse.org</url>
20
    </organization>
21
22
    <licenses>
23
        <license>
24
            <name>Eclipse Public License</name>
25
            <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
26
            <distribution>repo</distribution>
27
        </license>
28
    </licenses>
29
30
    <scm>
31
        <connection>
32
            scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn.monitor.core
33
        </connection>
34
        <url>
35
            http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.monitor.core/?root&#61;Tools_Project
36
        </url>
37
    </scm>
38
39
    <issueManagement>
40
        <system>Bugzilla</system>
41
        <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url>
42
    </issueManagement>
43
44
    <repositories>
45
        <repository>
46
            <id>central-eclipse</id>
47
            <name>Central Eclipse Repository</name>
48
            <url>http://repo1.maven.org/eclipse</url>
49
        </repository>
50
    </repositories>
51
52
    <dependencies>
53
        <dependency>
54
            <groupId>org.eclipse</groupId>
55
            <artifactId>osgi</artifactId>
56
            <version>3.3.0-v20070530</version>
57
            <scope>compile</scope>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.eclipse.equinox</groupId>
61
            <artifactId>common</artifactId>
62
            <version>3.3.0-v20070426</version>
63
            <scope>compile</scope>
64
        </dependency>
65
    </dependencies>
66
67
    <build>
68
        <sourceDirectory>src</sourceDirectory>
69
        <resources>
70
            <resource>
71
                <directory>.</directory>
72
                <includes>
73
                    <include>about.html</include>
74
                </includes>
75
            </resource>
76
        </resources>
77
        <plugins>
78
            <plugin>
79
                <groupId>org.apache.maven.plugins</groupId>
80
                <artifactId>maven-compiler-plugin</artifactId>
81
                <configuration>
82
                    <showDeprecation>true</showDeprecation>
83
                    <source>1.5</source>
84
                    <target>1.5</target>
85
                </configuration>
86
            </plugin>
87
            <plugin>
88
                <groupId>org.apache.maven.plugins</groupId>
89
                <artifactId>maven-jar-plugin</artifactId>
90
                <configuration>
91
                    <archive>
92
                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
93
                    </archive>
94
                </configuration>
95
            </plugin>
96
        </plugins>
97
    </build>
98
99
    <reporting>
100
        <plugins>
101
            <plugin>
102
                <groupId>org.apache.maven.plugins</groupId>
103
                <artifactId>maven-changelog-plugin</artifactId>
104
            </plugin>
105
            <plugin>
106
                <groupId>org.apache.maven.plugins</groupId>
107
                <artifactId>maven-jxr-plugin</artifactId>
108
            </plugin>
109
        </plugins>
110
    </reporting>
111
112
</project>
(-)pom.xml (+143 lines)
Added Link Here
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5
    <modelVersion>4.0.0</modelVersion>
6
    <groupId>org.eclipse.mylyn.bugzilla</groupId>
7
    <artifactId>core</artifactId>
8
    <version>2.0.0-v20070706-2000</version>
9
    <packaging>jar</packaging>
10
    <name>Mylyn Bugzilla Core</name>
11
    <url>http://www.eclipse.org/mylyn</url>
12
    <description>
13
        Eclipse Mylyn is a task-focused UI that reduces information overload and
14
        makes multi-tasking easy.
15
    </description>
16
17
    <organization>
18
        <name>Eclipse Foundation</name>
19
        <url>http://www.eclipse.org</url>
20
    </organization>
21
22
    <licenses>
23
        <license>
24
            <name>Eclipse Public License</name>
25
            <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
26
            <distribution>repo</distribution>
27
        </license>
28
    </licenses>
29
30
    <scm>
31
        <connection>
32
            scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn.bugzilla.core
33
        </connection>
34
        <url>
35
            http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.bugzilla.core/?root&#61;Tools_Project
36
        </url>
37
    </scm>
38
39
    <issueManagement>
40
        <system>Bugzilla</system>
41
        <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url>
42
    </issueManagement>
43
44
    <repositories>
45
        <repository>
46
            <id>central-eclipse</id>
47
            <name>Central Eclipse Repository</name>
48
            <url>http://repo1.maven.org/eclipse</url>
49
        </repository>
50
    </repositories>
51
52
    <dependencies>
53
        <dependency>
54
            <groupId>commons-httpclient</groupId>
55
            <artifactId>commons-httpclient</artifactId>
56
            <version>3.0.1</version>
57
            <scope>compile</scope>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.eclipse.core</groupId>
61
            <artifactId>runtime</artifactId>
62
            <version>3.3.100-v20070530</version>
63
            <scope>compile</scope>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.eclipse.equinox</groupId>
67
            <artifactId>common</artifactId>
68
            <version>3.3.0-v20070426</version>
69
            <scope>compile</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.eclipse.mylyn.monitor</groupId>
73
            <artifactId>core</artifactId>
74
            <version>2.0.0-v20070706-2000</version>
75
            <scope>compile</scope>
76
        </dependency>
77
        <dependency>
78
            <groupId>org.eclipse.mylyn.tasks</groupId>
79
            <artifactId>core</artifactId>
80
            <version>2.0.0-v20070706-2000</version>
81
            <scope>compile</scope>
82
        </dependency>
83
        <dependency>
84
            <groupId>org.eclipse.mylyn.web</groupId>
85
            <artifactId>core</artifactId>
86
            <version>2.0.0-v20070706-2000</version>
87
            <scope>compile</scope>
88
        </dependency>
89
        <dependency>
90
            <groupId>org.eclipse</groupId>
91
            <artifactId>osgi</artifactId>
92
            <version>3.3.0-v20070530</version>
93
            <scope>compile</scope>
94
        </dependency>
95
    </dependencies>
96
97
    <build>
98
        <sourceDirectory>src</sourceDirectory>
99
        <resources>
100
            <resource>
101
                <directory>.</directory>
102
                <includes>
103
                    <include>about.html</include>
104
                    <include>plugin.xml</include>
105
                </includes>
106
            </resource>
107
        </resources>
108
        <plugins>
109
            <plugin>
110
                <groupId>org.apache.maven.plugins</groupId>
111
                <artifactId>maven-compiler-plugin</artifactId>
112
                <configuration>
113
                    <showDeprecation>true</showDeprecation>
114
                    <source>1.5</source>
115
                    <target>1.5</target>
116
                </configuration>
117
            </plugin>
118
            <plugin>
119
                <groupId>org.apache.maven.plugins</groupId>
120
                <artifactId>maven-jar-plugin</artifactId>
121
                <configuration>
122
                    <archive>
123
                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
124
                    </archive>
125
                </configuration>
126
            </plugin>
127
        </plugins>
128
    </build>
129
130
    <reporting>
131
        <plugins>
132
            <plugin>
133
                <groupId>org.apache.maven.plugins</groupId>
134
                <artifactId>maven-changelog-plugin</artifactId>
135
            </plugin>
136
            <plugin>
137
                <groupId>org.apache.maven.plugins</groupId>
138
                <artifactId>maven-jxr-plugin</artifactId>
139
            </plugin>
140
        </plugins>
141
    </reporting>
142
143
</project>
(-)pom.xml (+133 lines)
Added Link Here
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5
    <modelVersion>4.0.0</modelVersion>
6
    <groupId>org.eclipse.mylyn.context</groupId>
7
    <artifactId>core</artifactId>
8
    <version>2.0.0-v20070706-2000</version>
9
    <packaging>jar</packaging>
10
    <name>Mylyn Context Core</name>
11
    <url>http://www.eclipse.org/mylyn</url>
12
    <description>
13
        Eclipse Mylyn is a task-focused UI that reduces information overload and
14
        makes multi-tasking easy.
15
    </description>
16
17
    <organization>
18
        <name>Eclipse Foundation</name>
19
        <url>http://www.eclipse.org</url>
20
    </organization>
21
22
    <licenses>
23
        <license>
24
            <name>Eclipse Public License</name>
25
            <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
26
            <distribution>repo</distribution>
27
        </license>
28
    </licenses>
29
30
    <scm>
31
        <connection>
32
            scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn.context.core
33
        </connection>
34
        <url>
35
            http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.context.core/?root&#61;Tools_Project
36
        </url>
37
    </scm>
38
39
    <issueManagement>
40
        <system>Bugzilla</system>
41
        <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url>
42
    </issueManagement>
43
44
    <repositories>
45
        <repository>
46
            <id>central-eclipse</id>
47
            <name>Central Eclipse Repository</name>
48
            <url>http://repo1.maven.org/eclipse</url>
49
        </repository>
50
    </repositories>
51
52
    <dependencies>
53
        <dependency>
54
            <groupId>org.eclipse.core</groupId>
55
            <artifactId>runtime</artifactId>
56
            <version>3.3.100-v20070530</version>
57
            <scope>compile</scope>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.eclipse.equinox</groupId>
61
            <artifactId>common</artifactId>
62
            <version>3.3.0-v20070426</version>
63
            <scope>compile</scope>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.eclipse.equinox</groupId>
67
            <artifactId>registry</artifactId>
68
            <version>3.3.0-v20070522</version>
69
            <scope>compile</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.eclipse.mylyn.monitor</groupId>
73
            <artifactId>core</artifactId>
74
            <version>2.0.0-v20070706-2000</version>
75
            <scope>compile</scope>
76
        </dependency>
77
        <dependency>
78
            <groupId>org.eclipse</groupId>
79
            <artifactId>osgi</artifactId>
80
            <version>3.3.0-v20070530</version>
81
            <scope>compile</scope>
82
        </dependency>
83
    </dependencies>
84
85
    <build>
86
        <sourceDirectory>src</sourceDirectory>
87
        <resources>
88
            <resource>
89
                <directory>.</directory>
90
                <includes>
91
                    <include>about.html</include>
92
                    <include>plugin.properties</include>
93
                    <include>plugin.xml</include>
94
                    <include>schema/bridges.exsd</include>
95
                </includes>
96
            </resource>
97
        </resources>
98
        <plugins>
99
            <plugin>
100
                <groupId>org.apache.maven.plugins</groupId>
101
                <artifactId>maven-compiler-plugin</artifactId>
102
                <configuration>
103
                    <showDeprecation>true</showDeprecation>
104
                    <source>1.5</source>
105
                    <target>1.5</target>
106
                </configuration>
107
            </plugin>
108
            <plugin>
109
                <groupId>org.apache.maven.plugins</groupId>
110
                <artifactId>maven-jar-plugin</artifactId>
111
                <configuration>
112
                    <archive>
113
                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
114
                    </archive>
115
                </configuration>
116
            </plugin>
117
        </plugins>
118
    </build>
119
120
    <reporting>
121
        <plugins>
122
            <plugin>
123
                <groupId>org.apache.maven.plugins</groupId>
124
                <artifactId>maven-changelog-plugin</artifactId>
125
            </plugin>
126
            <plugin>
127
                <groupId>org.apache.maven.plugins</groupId>
128
                <artifactId>maven-jxr-plugin</artifactId>
129
            </plugin>
130
        </plugins>
131
    </reporting>
132
133
</project>
(-)pom.xml (+137 lines)
Added Link Here
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5
    <modelVersion>4.0.0</modelVersion>
6
    <groupId>org.eclipse.mylyn.tasks</groupId>
7
    <artifactId>core</artifactId>
8
    <version>2.0.0-v20070706-2000</version>
9
    <packaging>jar</packaging>
10
    <name>Mylyn Tasks Core</name>
11
    <url>http://www.eclipse.org/mylyn</url>
12
    <description>
13
        Eclipse Mylyn is a task-focused UI that reduces information overload and
14
        makes multi-tasking easy.
15
    </description>
16
17
    <organization>
18
        <name>Eclipse Foundation</name>
19
        <url>http://www.eclipse.org</url>
20
    </organization>
21
22
    <licenses>
23
        <license>
24
            <name>Eclipse Public License</name>
25
            <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
26
            <distribution>repo</distribution>
27
        </license>
28
    </licenses>
29
30
    <scm>
31
        <connection>
32
            scm:cvs:pserver:anonymous:@dev.eclipse.org:/cvsroot/tools:org.eclipse.mylyn/org.eclipse.mylyn.tasks.core
33
        </connection>
34
        <url>
35
            http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mylyn/org.eclipse.mylyn.tasks.core/?root&#61;Tools_Project
36
        </url>
37
    </scm>
38
39
    <issueManagement>
40
        <system>Bugzilla</system>
41
        <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylyn</url>
42
    </issueManagement>
43
44
    <repositories>
45
        <repository>
46
            <id>central-eclipse</id>
47
            <name>Central Eclipse Repository</name>
48
            <url>http://repo1.maven.org/eclipse</url>
49
        </repository>
50
    </repositories>
51
52
    <dependencies>
53
        <dependency>
54
            <groupId>org.eclipse</groupId>
55
            <artifactId>osgi</artifactId>
56
            <version>3.3.0-v20070530</version>
57
            <scope>compile</scope>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.eclipse.core</groupId>
61
            <artifactId>runtime</artifactId>
62
            <version>3.3.100-v20070530</version>
63
            <scope>compile</scope>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.eclipse.equinox</groupId>
67
            <artifactId>common</artifactId>
68
            <version>3.3.0-v20070426</version>
69
            <scope>compile</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.eclipse.mylyn.context</groupId>
73
            <artifactId>core</artifactId>
74
            <version>2.0.0-v20070706-2000</version>
75
            <scope>compile</scope>
76
        </dependency>
77
        <dependency>
78
            <groupId>org.eclipse.mylyn.monitor</groupId>
79
            <artifactId>core</artifactId>
80
            <version>2.0.0-v20070706-2000</version>
81
            <scope>compile</scope>
82
        </dependency>
83
        <dependency>
84
            <groupId>org.eclipse.mylyn.web</groupId>
85
            <artifactId>core</artifactId>
86
            <version>2.0.0-v20070706-2000</version>
87
            <scope>compile</scope>
88
        </dependency>
89
    </dependencies>
90
91
    <build>
92
        <sourceDirectory>src</sourceDirectory>
93
        <resources>
94
            <resource>
95
                <directory>.</directory>
96
                <includes>
97
                    <include>about.html</include>
98
                    <include>plugin.xml</include>
99
                </includes>
100
            </resource>
101
        </resources>
102
        <plugins>
103
            <plugin>
104
                <groupId>org.apache.maven.plugins</groupId>
105
                <artifactId>maven-compiler-plugin</artifactId>
106
                <configuration>
107
                    <showDeprecation>true</showDeprecation>
108
                    <source>1.5</source>
109
                    <target>1.5</target>
110
                </configuration>
111
            </plugin>
112
            <plugin>
113
                <groupId>org.apache.maven.plugins</groupId>
114
                <artifactId>maven-jar-plugin</artifactId>
115
                <configuration>
116
                    <archive>
117
                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
118
                    </archive>
119
                </configuration>
120
            </plugin>
121
        </plugins>
122
    </build>
123
124
    <reporting>
125
        <plugins>
126
            <plugin>
127
                <groupId>org.apache.maven.plugins</groupId>
128
                <artifactId>maven-changelog-plugin</artifactId>
129
            </plugin>
130
            <plugin>
131
                <groupId>org.apache.maven.plugins</groupId>
132
                <artifactId>maven-jxr-plugin</artifactId>
133
            </plugin>
134
        </plugins>
135
    </reporting>
136
137
</project>

Return to bug 166203