[jboss-jira] [JBoss JIRA] Created: (SECURITY-114) Move resources into standard maven location

Paul Gier (JIRA) jira-events at lists.jboss.org
Fri Jan 18 12:42:21 EST 2008


Move resources into standard maven location
-------------------------------------------

                 Key: SECURITY-114
                 URL: http://jira.jboss.com/jira/browse/SECURITY-114
             Project: JBoss Security and Identity Management
          Issue Type: Task
      Security Level: Public (Everyone can see)
          Components: JBossSX
            Reporter: Paul Gier
         Assigned To: Anil Saldhana


The current resources configuration has the files spread across a few directories.
{code}
      <resources>
         <resource>
            <directory>src/main</directory>
            <includes>
               <include>**/*.xml</include>
            </includes>
         </resource>
         <resource>
            <directory>${basedir}</directory>
            <includes>
               <include>JBossORG-EULA.txt</include>
            </includes>
         </resource>
         <resource>
            <directory>src/resources</directory>
            <includes>
               <include>**/*.dtd</include>
               <include>**/*.xsd</include>
            </includes>
         </resource>
         <resource>
            <directory>target/generated-sources/javacc</directory>
            <includes>
               <include>**/*.class</include>
            </includes>
         </resource> 
      </resources> 
      <testResources>
         <testResource>
            <directory>src/tests/resources/</directory>
         </testResource>
         <testResource>
            <directory>src/main</directory>
         </testResource>
      </testResources>
{code}

All the resource files could be moved to the standard maven locations of src/main/resources, and src/test/resources.  This way, the only configuration needed would be the appropriate includes.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list