garcon-marcel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tambapps.http</groupId> <artifactId>garcon-marcel</artifactId> <version>2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.tambapps.http</groupId> <artifactId>garcon-parent</artifactId> <version>2.0</version> </parent> <groupId>com.tambapps.http</groupId> <artifactId>garcon-marcel</artifactId> <version>2.0</version> <name>Garcon Marcel</name> <description>Garcon implementation for Marcel</description> <url>https://github.com/tambapps/garcon</url> <inceptionYear>2022</inceptionYear> <organization> <name>Tambapps</name> <url>https://github.com/tambapps/</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://raw.githubusercontent.com/tambapps/garcon/main/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>nfonkoua</id> <name>Nelson Fonkoua</name> <email>tambapps@gmail.com</email> <roles> <role>Lead Developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/tambapps/garcon.git</connection> <url>https://github.com/tambapps/garcon</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/tambapps/garcon/issues</url> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>com.tambapps.http</groupId> <artifactId>garcon-core</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.tambapps.marcel</groupId> <artifactId>marcel-stdlib</artifactId> </dependency> <dependency> <groupId>com.tambapps.http</groupId> <artifactId>hyperpoet-marcel</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.tambapps.marcel.maven</groupId> <artifactId>marcel-maven-plugin</artifactId> <executions> <execution> <goals> <goal>compile</goal> <goal>compileTests</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> <execution> <id>sources-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>sources</classifier> <classesDirectory>${basedir}/src/main/marcel</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadoc</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration></configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>