if there aren't any physical accessors for groovy property, search for them anyway
[fedora-idea.git] / plugins / maven / pom.xml
blob41052264aaf066607d75956277d8d0f3f6fde06a
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
5   <groupId>org.jetbrains.idea</groupId>
6   <artifactId>maven-plugin</artifactId>
7   <version>2.0-SNAPSHOT</version>
8   <packaging>jar</packaging>
10   <name>Maven Integration</name>
11   <description>Maven Integration plugin</description>
12   
13   <repositories>
14   </repositories>
16   <dependencies>
17     <dependency>
18       <groupId>org.apache.maven</groupId>
19       <artifactId>maven-embedder</artifactId>
20       <version>2.1-SNAPSHOT</version>
21       <exclusions>
22         <exclusion>
23           <groupId>aspectj</groupId>
24           <artifactId>aspectjrt</artifactId>
25         </exclusion>
26         <exclusion>
27           <groupId>jdom</groupId>
28           <artifactId>jdom</artifactId>
29         </exclusion>
30         <exclusion>
31           <groupId>jtidy</groupId>
32           <artifactId>jtidy</artifactId>
33         </exclusion>
34         <exclusion>
35           <groupId>junit</groupId>
36           <artifactId>junit</artifactId>
37         </exclusion>
38       </exclusions>
39     </dependency>
40     <dependency>
41       <groupId>com.sonatype.nexus</groupId>
42       <artifactId>nexus-indexer</artifactId>
43       <version>1.0.0-SNAPSHOT</version>
44       <exclusions>
45         <exclusion>
46           <groupId>junit</groupId>
47           <artifactId>junit</artifactId>
48         </exclusion>
49       </exclusions>
50     </dependency>
51   </dependencies>
53   <build>
54     <plugins>
55       <plugin>
56         <artifactId>maven-clean-plugin</artifactId>
57         <configuration>
58           <filesets>
59             <fileset>
60               <directory>lib</directory>
61               <includes>
62                 <include>**/*.jar</include>
63               </includes>
64             </fileset>
65           </filesets>
66         </configuration>
67       </plugin>
68       <plugin>
69         <artifactId>maven-dependency-plugin</artifactId>
70         <configuration>
71           <outputDirectory>lib</outputDirectory>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76 </project>