You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Shawn McKinney (JIRA)" <ji...@apache.org> on 2015/04/21 22:09:59 UTC

[jira] [Created] (FC-93) fortress core packaging includes fortress.properties inside .jar

Shawn McKinney created FC-93:
--------------------------------

             Summary: fortress core packaging includes fortress.properties inside .jar
                 Key: FC-93
                 URL: https://issues.apache.org/jira/browse/FC-93
             Project: FORTRESS
          Issue Type: Bug
    Affects Versions: 1.0.0-RC41
            Reporter: Shawn McKinney
             Fix For: 1.0.0-RC41


exclude properties, xml and txt files from the jar:

        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-jar-plugin</artifactId>
          <version>2.6</version>
          <configuration>
            <excludes>
              <exclude>**/bootstrap</exclude>
              <exclude>**/*.xml</exclude>
              <exclude>**/*.properties</exclude>
              <exclude>**/*.txt</exclude>
              <exclude>**/*.src</exclude>
            </excludes>
          </configuration>
          <executions>
            <execution>
              <goals>
                <goal>test-jar</goal>
              </goals>
            </execution>
          </executions>
        </plugin>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)