tac
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.teecube.tac</groupId> <artifactId>tac</artifactId> <version>0.0.1</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> <groupId>io.teecube</groupId> <artifactId>t3</artifactId> <version>0.0.1</version> </parent> <groupId>io.teecube.tac</groupId> <artifactId>tac</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <name>T³ - TAC</name> <description>TAC stands for TIBCO Advanced Components and is aimed at providing advanced components to accelerate development of TIBCO applications such as Maven archetypes (project templates), shared libraries, palettes, ...</description> <url>https://teecu.be//tac</url> <distributionManagement> <site> <id>t3.site</id> <url>https://teecu.be//tac</url> </site> </distributionManagement> <properties> <siteTopCaption>${tacDisplayedName}</siteTopCaption> <siteTopLink /> </properties> <modules> <module>archetypes</module> </modules> <profiles> <profile> <id>release-profile</id> <activation> <!-- activation is triggered by maven-release-plugin --> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <configuration> <replacements> <replacement> <token><url>\$\{site.*</url></token> <value><url>${project.url}</url></value> </replacement> <replacement> <token><name>\$\{.*</name></token> <value><name>${project.name}</name></value> </replacement> <replacement> <token><description>\$\{.*</description></token> <value><description>${project.description}</description></value> </replacement> </replacements> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>io.teecube.t3</groupId> <artifactId>t3-site-enhancer</artifactId> <configuration> <extendedSidebars> <extendedSidebar>disabled</extendedSidebar> </extendedSidebars> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <reportSets> <reportSet> <id>non-aggregate</id> <reports> <report>license</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <scm> <connection>scm:git:https://git.teecu.be/teecube/tac.git</connection> <developerConnection>scm:git:https://git.teecu.be/teecube/tac.git</developerConnection> <url>https://git.teecu.be/teecube/tac</url> <tag>tac/0.0.1</tag> </scm> </project>