zed-service-attachment-file
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.zed-platform</groupId> <artifactId>zed-service-attachment-file</artifactId> <version>0.0.20</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>zed-service-attachment</artifactId> <groupId>com.github.zed-platform</groupId> <version>0.0.20</version> </parent> <artifactId>zed-service-attachment-file</artifactId> <packaging>war</packaging> <dependencies> <dependency> <groupId>com.github.zed-platform</groupId> <artifactId>zed-camel</artifactId> </dependency> <!-- Service --> <dependency> <groupId>com.github.zed-platform</groupId> <artifactId>zed-service-document-mongodb</artifactId> <classifier>classes</classifier> </dependency> <!-- Utils --> <dependency> <groupId>com.github.zed-platform</groupId> <artifactId>zed-utils</artifactId> </dependency> <!-- Language --> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>com.github.zed-platform</groupId> <artifactId>zed-service-attachment-sdk</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-batch</artifactId> <version>2.3.7-01</version> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>2.9.1-01</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-compiler-api</artifactId> <version>2.4</version> </dependency> </dependencies> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>2.9.1-01</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>zed.service.attachment.file.FileAttachmentServiceBoot</mainClass> </configuration> </plugin> </plugins> </build> </project>