atbash-rest-client-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>be.atbash.mp.rest-client</groupId> <artifactId>atbash-rest-client-impl</artifactId> <version>0.5.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2018-2019 Rudy De Busscher (https://www.atbash.be) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>be.atbash.mp.rest-client</groupId> <artifactId>rest-client-parent</artifactId> <version>0.5.1.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>atbash-rest-client-impl</artifactId> <name>Atbash Rest Client Implementation</name> <description>Atbash Rest Client Implementation</description> <properties> <deltaspike.version>1.8.1</deltaspike.version> <!-- DeltaSpikeProxyInvocationHandler --> <atbash-utils.version>0.9.3</atbash-utils.version> <asciidoctor.maven.plugin.version>1.5.6</asciidoctor.maven.plugin.version> <asciidoctorj.pdf.version>1.5.0-alpha.16</asciidoctorj.pdf.version> </properties> <dependencies> <dependency> <groupId>javax.enterprise</groupId> <artifactId>cdi-api</artifactId> <version>1.1</version> <scope>provided</scope> <!-- So it is useable within Java SE --> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>provided</scope> <!-- So it is useable within Java SE --> </dependency> <dependency> <groupId>be.atbash.mp.rest-client</groupId> <artifactId>microprofile-rest-client-api</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>be.atbash.config</groupId> <artifactId>atbash-config</artifactId> <version>${atbash-config.version}</version> </dependency> <dependency> <groupId>be.atbash.utils</groupId> <artifactId>utils-cdi</artifactId> <version>${atbash-utils.version}</version> </dependency> <dependency> <groupId>org.apache.deltaspike.core</groupId> <artifactId>deltaspike-core-api</artifactId> <version>${deltaspike.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.deltaspike.modules</groupId> <artifactId>deltaspike-partial-bean-module-impl</artifactId> <version>${deltaspike.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>${asciidoctor.maven.plugin.version}</version> <dependencies> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj-pdf</artifactId> <version>${asciidoctorj.pdf.version}</version> </dependency> </dependencies> <configuration> <sourceDirectory>src/main/doc</sourceDirectory> <!-- Attributes common to all output formats --> <attributes> <sourcedir>${project.build.sourceDirectory}</sourcedir> </attributes> </configuration> <executions> <execution> <id>generate-pdf-doc</id> <phase>generate-resources</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <backend>pdf</backend> <!-- Since 1.5.0-alpha.9 PDF back-end can use 'rouge' as well as 'coderay' for source highlighting --> <!-- Due to a known issue on windows, it is recommended to use 'coderay' until an new version of 'rouge' is released. see discussions: https://github.com/asciidoctor/asciidoctor-maven-examples/pull/58 https://github.com/asciidoctor/asciidoctorj-pdf/issues/3 https://github.com/jneen/rouge/issues/661 --> <sourceHighlighter>coderay</sourceHighlighter> <attributes> <icons>font</icons> <pagenums/> <toc/> <idprefix/> <idseparator>-</idseparator> </attributes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>