source: java/FramclipsePlugin/pom.xml @ 12

Last change on this file since 12 was 12, checked in by jbochenski, 15 years ago
  • Property svn:mime-type set to text/plain
File size: 3.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5        <modelVersion>4.0.0</modelVersion>
6        <groupId>pl.kuzniak</groupId>
7        <artifactId>framclipse</artifactId>
8        <version>1.0-SNAPSHOT</version>
9        <name>Framclipse</name>
10        <dependencies>
11                <dependency>
12                        <groupId>org.slf4j</groupId>
13                        <artifactId>slf4j-log4j12</artifactId>
14                        <version>1.1.0</version>
15                </dependency>
16        </dependencies>
17        <repositories>
18                <repository>
19                        <id>codehaus</id>
20                        <name>Codehaus maven repository</name>
21                        <url>http://dist.codehaus.org/</url>
22                        <layout>legacy</layout>
23                </repository>
24                <repository>
25                        <snapshots />
26                        <id>ibiblio</id>
27                        <name>Maven Repository Switchboard</name>
28                        <url>http://www.ibiblio.org/maven2</url>
29                </repository>
30        </repositories>
31        <pluginRepositories>
32                <pluginRepository>
33                        <id>snapshots</id>
34                        <name>snapshot plugins</name>
35                        <url>http://snapshots.maven.codehaus.org/maven2</url>
36                </pluginRepository>
37                <pluginRepository>
38                        <id>apache.snapshots</id>
39                        <name>Apache Snapshot Plugins</name>
40                        <url>http://people.apache.org/repo/m2-snapshot-repository</url>
41                </pluginRepository>
42        </pluginRepositories>
43        <build>
44                <sourceDirectory>src/main/java</sourceDirectory>
45                <plugins>
46                        <plugin>
47                                <artifactId>maven-compiler-plugin</artifactId>
48                                <configuration>
49                                        <source>1.5</source>
50                                        <target>1.5</target>
51                                </configuration>
52                        </plugin>
53                        <plugin>
54                                <groupId>org.apache.maven.plugins</groupId>
55                                <artifactId>maven-eclipse-plugin</artifactId>
56                                <configuration>
57                                        <projectnatures>
58                                                <projectnature>
59                                                        org.eclipse.jdt.core.javanature
60                                                </projectnature>
61                                                <projectnature>
62                                                        org.eclipse.pde.PluginNature
63                                                </projectnature>
64                                        </projectnatures>
65                                        <buildcommands>
66                                                <buildcommand>
67                                                        org.eclipse.jdt.core.javabuilder
68                                                </buildcommand>
69                                                <buildcommand>
70                                                        org.eclipse.pde.ManifestBuilder
71                                                </buildcommand>
72                                                <buildcommand>
73                                                        org.eclipse.pde.SchemaBuilder
74                                                </buildcommand>
75                                        </buildcommands>
76                                </configuration>
77                        </plugin>
78                        <plugin>
79                                <groupId>org.apache.felix.plugins</groupId>
80                                <artifactId>maven-osgi-plugin</artifactId>
81                                <extensions>true</extensions>
82                                <version>0.8.0-SNAPSHOT</version>
83                                <configuration>
84                                        <manifestFile>META-INF/MANIFEST.MF</manifestFile>
85                                        <osgiManifest>
86                                                <bundleName>
87                                                        Framclipse
88                                                </bundleName>
89                                                <bundleSymbolicName>
90                                                        com.framsticks.framclipse;singleton:=true
91                                                </bundleSymbolicName>
92                                                <bundleLocalization>plugin</bundleLocalization>
93                                                <bundleDescription>
94                                                        An Eclipse Plugin to manage a remote
95                                                        Continuum instance.
96                                                </bundleDescription>
97                                                <bundleActivator>
98                                                        com.framsticks.framclipse.Framclipse
99                                                </bundleActivator>
100                                                <requireBundle>
101                                                        org.eclipse.ui,
102                                                        org.eclipse.core.runtime,
103                                                        org.eclipse.jface.text,
104                                                        org.eclipse.ui.editors,
105                                                        org.eclipse.ui.workbench.texteditor
106                                                </requireBundle>
107                                                <bundleVendor>Jan Kuźniak</bundleVendor>
108                                        </osgiManifest>
109                                </configuration>
110                        </plugin>
111                </plugins>
112        </build>
113</project>
Note: See TracBrowser for help on using the repository browser.