tams-component
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.wicp.tams</groupId> <artifactId>tams-component</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.wicp.tams</groupId> <artifactId>tams</artifactId> <version>2.0.0</version> </parent> <artifactId>tams-component</artifactId> <dependencies> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-upload</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-javadoc</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-core</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- commons --> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> </dependency> <dependency> <groupId>net.wicp.tams</groupId> <artifactId>common-apiext</artifactId> </dependency> <dependency> <groupId>net.wicp.tams</groupId> <artifactId>common-web</artifactId> </dependency> <dependency> <groupId>net.wicp.tams</groupId> <artifactId>common-http</artifactId> </dependency> <!-- 添加它会导致执行mvn tapestry-tldgen:tld-generate报错 Javadoc exit code: 1 - 命令行太长 --> <dependency> <groupId>net.wicp.tams</groupId> <artifactId>common-jdbc</artifactId> </dependency> <!--mybatis plus使用 ParentPageBeanBatis类就必须要添加 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Tapestry-Module-Classes>net.wicp.tams.component.LibraryModule</Tapestry-Module-Classes> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>fr.exanpe</groupId> <artifactId>tapestry-tldgen</artifactId> <configuration> <uri>tapestry-library:rjzjh</uri> <namespace>r</namespace> <rootPackage>net.wicp.tams.component</rootPackage> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build> </project>