3

I would like know the maven config for Mule's secure-property-placeholder (ZIP).

Thanks.

Regards, Raj

Raj
  • 59
  • 1
  • 8

1 Answers1

3

This is the dependency:

    <dependency>
        <groupId>com.mulesoft.security</groupId>
        <artifactId>mule-module-security-property-placeholder</artifactId>
        <version>1.2</version>
    </dependency>

And is available from the follwoing repository. You will need a username and password supplied by MuleSoft in order to access the EE repo:

<repository>
    <id>mulesoft-ee</id>
    <name>Mulesoft EE</name>
    <url>https://repository.mulesoft.org/nexus-ee/content/repositories/releases-ee/</url>
</repository>
Ryan Carter
  • 11,441
  • 2
  • 20
  • 27
  • 1
    Currently 1.4 version is available, and soon 1.5 version for Mule 3.7.0 and Java 8. – Ale Sequeira Jun 29 '15 at 22:37
  • Thanks @ Ryan for your quick reply, I am now able to add it. – Raj Jul 01 '15 at 14:39
  • @AleSequeira Whats the latest version because i cant find it anywhere -.- – malteser Nov 01 '16 at 10:08
  • 1
    @MalcolmTanti 1.6.0, but check the version compatibility table: https://docs.mulesoft.com/release-notes/anypoint-enterprise-security-release-notes#version-compatibility – Ale Sequeira Nov 01 '16 at 18:50
  • How this dependency is packages in the Mule deployable archive ? Should it be inside /plugins directory rather than /libs? – zdenekca Oct 20 '17 at 18:20
  • This solution is only for enterprise edition. Any idea if security property placeholder allow to use in community edition? – Mind Peace Aug 27 '18 at 20:42