struts2-jquery-chart-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery-chart-plugin</artifactId> <version>6.0.1</version> </dependency>
<?xml version="1.0"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery</artifactId> <version>6.0.1</version> </parent> <artifactId>struts2-jquery-chart-plugin</artifactId> <name>Struts 2 jQuery Chart Plugin</name> <packaging>jar</packaging> <scm> <url>https://github.com/struts-community-plugins/struts2-jquery/</url> <tag>6.0.1</tag> <connection>scm:git:git@github.com:struts-community-plugins/struts2-jquery.git</connection> <developerConnection>scm:git:git@github.com:struts-community-plugins/struts2-jquery.git</developerConnection> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgs> <arg>-Auri=/struts-jquery-chart-tags</arg> <arg>-AtlibVersion=${tlib.version}</arg> <arg>-AjspVersion=2.0</arg> <arg>-AshortName=sjc</arg> <arg>-AdisplayName=Struts2 jQuery Chart Tags</arg> <arg>-AoutFile=${basedir}/target/classes/META-INF/struts-jquery-chart-tags.tld</arg> <arg>-Adescription="Struts2 Chart Tags based on jQuery."</arg> <arg>-AoutTemplatesDir=${basedir}/src/site/docs</arg> </compilerArgs> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.samaxes.maven</groupId> <artifactId>minify-maven-plugin</artifactId> <version>${minify.version}</version> <executions> <execution> <id>default-minify</id> <phase>generate-resources</phase> <configuration> <jsEngine>CLOSURE</jsEngine> <closureLanguageIn>ECMASCRIPT5_STRICT</closureLanguageIn> <closureLanguageOut>ECMASCRIPT5_STRICT</closureLanguageOut> <closureCreateSourceMap>true</closureCreateSourceMap> <skipMerge>true</skipMerge> <webappSourceDir>${basedir}/src/main/resources</webappSourceDir> <webappTargetDir>${basedir}/src/main/resources</webappTargetDir> <jsSourceDir>template/js/struts2</jsSourceDir> <jsTargetDir>template/js/struts2</jsTargetDir> <jsSourceFiles> <jsSourceFile>jquery.chart.struts2.js</jsSourceFile> </jsSourceFiles> </configuration> <goals> <goal>minify</goal> </goals> </execution> <execution> <id>flot-minify</id> <phase>generate-resources</phase> <configuration> <jsEngine>CLOSURE</jsEngine> <closureLanguageIn>ECMASCRIPT6_STRICT</closureLanguageIn> <closureLanguageOut>ECMASCRIPT5_STRICT</closureLanguageOut> <closureCreateSourceMap>true</closureCreateSourceMap> <skipMerge>true</skipMerge> <webappSourceDir>${basedir}/src/main/resources</webappSourceDir> <webappTargetDir>${basedir}/src/main/resources</webappTargetDir> <jsSourceDir>template/js/flot</jsSourceDir> <jsTargetDir>template/js/flot</jsTargetDir> <jsSourceIncludes> <jsSourceInclude>*.js</jsSourceInclude> </jsSourceIncludes> <jsSourceExcludes> <jsSourceExclude>*.min.js</jsSourceExclude> <jsSourceExclude>*.map</jsSourceExclude> </jsSourceExcludes> </configuration> <goals> <goal>minify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery-plugin</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jakarta.servlet.jsp.jstl</groupId> <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-core</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-velocity-plugin</artifactId> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> </dependency> <dependency> <groupId>jakarta.servlet.jsp</groupId> <artifactId>jakarta.servlet.jsp-api</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> </dependencies> </project>