dookug-document-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>hu.icellmobilsoft.dookug</groupId> <artifactId>dookug-document-service</artifactId> <version>2.0.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>hu.icellmobilsoft.dookug</groupId> <artifactId>dookug-document</artifactId> <version>2.0.0</version> </parent> <artifactId>dookug-document-service</artifactId> <packaging>war</packaging> <properties> <service.name>dookug-document-service</service.name> </properties> <dependencies> <dependency> <groupId>hu.icellmobilsoft.dookug</groupId> <artifactId>dookug-common-system-rest</artifactId> </dependency> <dependency> <groupId>hu.icellmobilsoft.dookug</groupId> <artifactId>dookug-common-system-jpa</artifactId> </dependency> <dependency> <groupId>hu.icellmobilsoft.dookug</groupId> <artifactId>dookug-engine-handlebars</artifactId> </dependency> <dependency> <groupId>hu.icellmobilsoft.dookug</groupId> <artifactId>dookug-engine-pdfbox</artifactId> </dependency> <dependency> <groupId>hu.icellmobilsoft.dookug</groupId> <artifactId>dookug-engine-saxon</artifactId> </dependency> <!-- they are not included in the baseimage we are using --> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>hu.icellmobilsoft.roaster</groupId> <artifactId>roaster-weldunit</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> </dependency> <!-- Ha deployment structure-ben adom hozzá, modul not found-ot dob rá. Tényleg nincs a moduls mappában. WILDFLY_BASE_IMAGE: 'dockerhub.icellmobilsoft.hu/wildfly-ms/oracle-jdbc:0.6.0 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>compile</scope> </dependency> <!-- https://github.com/eclipse/microprofile-config/issues/716 javitas utan kiszedni <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.annotation</artifactId> </dependency> --> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> <resource> <directory>../../etc/config</directory> <includes> <include>META-INF/persistence.xml</include> <include>META-INF/microprofile-config*</include> </includes> <filtering>true</filtering> </resource> </resources> </build> <profiles> <profile> <id>openapi</id> <!-- Openapi generalasa annotaciokbol. Release-nel van hasznalva --> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>io.smallrye</groupId> <artifactId>smallrye-open-api-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <!-- RUN: mvn exec:exec -P deploy --> <!-- Deploy war file to local docker container --> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <goals> <goal>exec</goal> </goals> </execution> </executions> <configuration> <executable>docker</executable> <arguments> <argument>cp</argument> <argument>${project.build.directory}/${project.build.finalName}.${project.packaging}</argument> <argument>dookug-document-service:/home/icellmobilsoft/wildfly/standalone/deployments/ROOT.war</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>