encrypted-properties
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ikasan</groupId>
<artifactId>encrypted-properties</artifactId>
<version>4.1.5</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.ikasan</groupId>
<artifactId>non-functional</artifactId>
<version>4.1.5</version>
</parent>
<groupId>org.ikasan</groupId>
<artifactId>encrypted-properties</artifactId>
<version>4.1.5</version>
<name>Encrypted Properties Integration Module</name>
<description>Bootstrap a modules whose properties have been encrypted.</description>
<dependencies>
<dependency>
<groupId>org.ikasan</groupId>
<artifactId>ikasan-eip-standalone</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ikasan</groupId>
<artifactId>ikasan-jms-spring-arjuna</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ikasan</groupId>
<artifactId>ikasan-test-endpoint</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ikasan</groupId>
<artifactId>ikasan-h2-standalone-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.ikasan</groupId>
<artifactId>ikasan-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ikasan</groupId>
<artifactId>ikasan-nft-util</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-kahadb-store</artifactId>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!-- build plugins -->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${version.org.springboot}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>