janilla
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.janilla</groupId>
<artifactId>janilla</artifactId>
<version>13.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> <groupId>com.janilla</groupId> <artifactId>janilla</artifactId> <version>13.0.0</version> <packaging>pom</packaging> <modules> <module>backend</module> <module>base</module> <module>examples/acme-dashboard</module> <module>examples/address-book</module> <module>examples/com</module> <module>examples/conduit</module> <module>examples/petclinic</module> <module>examples/todomvc</module> <module>frontend</module> <module>fullstack</module> <module>templates/blank</module> <module>templates/ecommerce</module> <module>templates/website</module> </modules> <properties> <maven.compiler.parameters>true</maven.compiler.parameters> <maven.compiler.release>25</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <revision>13.0.0</revision> </properties> <build> <sourceDirectory>./source</sourceDirectory> <resources> <resource> <directory>source</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.7.3</version> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <name>janilla</name> <description>Janilla</description> <url>https://github.com/diego-schivo/janilla</url> <licenses> <license> <name>GPL-2.0-only WITH Classpath-exception-2.0</name> <url>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Diego Schivo</name> <email>diego.schivo@janilla.com</email> <organization>Janilla</organization> <organizationUrl>https://janilla.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/diego-schivo/janilla.git</connection> <developerConnection>scm:git:ssh://git@github.com/diego-schivo/janilla.git</developerConnection> <url>https://github.com/diego-schivo/janilla</url> <tag>janilla-13.0.0</tag> </scm> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.4.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.12.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.10.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>