I have this artifact that gets published via a Subversion working copy. This
means that the JAR file contains unrelated Subversion files and folders. How
can I exclude these Subversion files and folders from the publishing
process?

Here is my current publish blocks:

artifactory {
    contextUrl = artifactory_context
    publish {
        repository {
            repoKey = 'plugins-release-local'
            username = artifactory_user
            password = artifactory_password
            maven = true

        }
        defaults {
            publications ('mavenJava')
        }
    }
}

publishing {
    publications {
        mavenJava(MavenPublication) {
            from components.java
                //tried various exclude statements which were giving me
errors
        }
    }
}

How I launch the publish process:

./gradlew -Pversion_number=xxx -Pgroup_value=yyy artifactoryPublish
--stacktrace



--
View this message in context: 
http://forums.jfrog.org/Excluding-Subversion-related-files-from-the-published-artifact-tp7581044.html
Sent from the Artifactory - Users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity 
planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e
_______________________________________________
Artifactory-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/artifactory-users

Reply via email to