Add resource filters to have java code in the src/main/resources to become source folders in Eclipse
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@798681 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ca7db536ef
commit
2488e01d28
1 changed files with 34 additions and 18 deletions
|
@ -64,29 +64,45 @@
|
|||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<excludes>
|
||||
<exclude>General/**</exclude>
|
||||
<exclude>*_Java/**</exclude>
|
||||
<exclude>ASM_8004/**</exclude>
|
||||
<exclude>ASM_8005/**</exclude>
|
||||
</excludes>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>add-source</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>add-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>add-source</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>add-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>${basedir}/src/main/resources/General</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
|
||||
<source>${basedir}/src/main/resources/General_Java</source>
|
||||
<source>${basedir}/src/main/resources/ASM_8001_Java</source>
|
||||
<source>${basedir}/src/main/resources/ASM_8004</source>
|
||||
<source>${basedir}/src/main/resources/ASM_8005</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Add table
Reference in a new issue