credmp / maven-emacs-plugin

An maven plugin to generate JDEE files from maven projects

This URL has Read+Write access

maven-emacs-plugin / pom.xml
398c8ccc » credmp 2008-06-19 Initial import from benzin ... 1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <project xmlns="http://maven.apache.org/POM/4.0.0"
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
6 http://maven.apache.org/maven-v4_0_0.xsd">
7
8 <modelVersion>4.0.0</modelVersion>
9 <groupId>org.apache.maven.plugin</groupId>
10 <artifactId>maven-emacs-plugin</artifactId>
11 <packaging>maven-plugin</packaging>
12 <version>1.2.2</version>
13 <name>Maven Mojo Archetype</name>
14 <url>http://maven.apache.org</url>
15 <description>
16 Project which make setting files for Emacs JDE
17 </description>
18
19 <developers>
20 <developer>
21 <!-- TODO verify and complete -->
22 <id>credmp</id>
23 <name></name>
24 <email></email>
25 <!-- <web>http://www.credmp.org/</web> -->
26 <roles>
27 <role>Developer</role>
28 </roles>
29 </developer>
30 <developer>
31 <!-- TODO verify and complete -->
32 <id>benzin</id>
33 <name>Lukas Benda</name>
34 <email>bendal AT apnet DOT cz</email>
35 <!-- <web>http://live.jabbim.cz/benzin</web> -->
36 <roles>
37 <role>Developer</role>
38 </roles>
39 <timezone>+1</timezone>
40 </developer>
41 </developers>
42
43 <properties>
44 <java.version>1.6.0</java.version>
45 </properties>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.apache.maven</groupId>
50 <artifactId>maven-plugin-api</artifactId>
51 <version>2.0.4</version>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.maven</groupId>
55 <artifactId>maven-artifact</artifactId>
56 <version>2.0.4</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.maven</groupId>
60 <artifactId>maven-project</artifactId>
61 <version>2.0.4</version>
62 </dependency>
63 <dependency>
64 <groupId>org.codehaus.plexus</groupId>
65 <artifactId>plexus-utils</artifactId>
66 <version>1.4.2</version>
67 </dependency>
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <version>3.8.1</version>
72 <scope>test</scope>
73 </dependency>
74 <!--
75 <dependency>
76 <groupId>com.sun</groupId>
77 <artifactId>tools</artifactId>
78 <version>${java.version}</version>
79 <scope>system</scope>
80 <systemPath>${java.home}/../lib/tools.jar</systemPath>
81 </dependency>
82 -->
83 </dependencies>
84 <build>
85 <plugins>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-compiler-plugin</artifactId>
89 <version>2.0</version>
90 <configuration>
91 <source>1.5</source>
92 <target>1.5</target>
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
97 <reporting>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-surefire-plugin</artifactId>
102 <configuration>
103 <showSuccess>false</showSuccess>
104 <reportFormat>plain</reportFormat>
105 </configuration>
106 </plugin>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-jxr-plugin</artifactId>
110 </plugin>
111 <plugin>
112 <groupId>org.codehaus.mojo</groupId>
113 <artifactId>jxr-maven-plugin</artifactId>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-javadoc-plugin</artifactId>
118 </plugin>
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-surefire-report-plugin</artifactId>
122 </plugin>
123 <plugin>
124 <groupId>org.codehaus.mojo</groupId>
125 <artifactId>taglist-maven-plugin</artifactId>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-checkstyle-plugin</artifactId>
130 <configuration>
131 <configLocation>config/maven_checks.xml</configLocation>
132 </configuration>
133 </plugin>
134 </plugins>
135 </reporting>
136 </project>