jsmart-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.jsmartframework</groupId>
<artifactId>jsmart-web</artifactId>
<version>3.0.9</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>
<groupId>com.jsmartframework</groupId>
<artifactId>jsmart-web</artifactId>
<version>3.0.9</version>
<packaging>jar</packaging>
<name>JSmart Web Framework</name>
<description>Java Web Development Framework</description>
<url>https://jefalbino.github.io/</url>
<licenses>
<license>
<name>GNU Lesser General Public License version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Jeferson Albino</name>
<email>jef.albino@yahoo.com.br</email>
<organization>None</organization>
<organizationUrl>https://jefalbino.github.io/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:jefalbino/jsmart-web.git</connection>
<developerConnection>scm:git:git@github.com:jefalbino/jsmart-web.git</developerConnection>
<url>git@github.com:jefalbino/jsmart-web.git</url>
</scm>
<dependencies>
<!-- Servlet -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<!-- JSTL -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<!-- JSP -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.3.1</version>
</dependency>
<!-- Expression Language -->
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
<!-- Java EE Injection -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<!-- EJB -->
<dependency>
<groupId>javax.ejb</groupId>
<artifactId>ejb-api</artifactId>
<version>3.0</version>
</dependency>
<!-- Spring Web -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
<!-- Spring Web MVC for RequestPath -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
<!-- JAXB -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.12</version>
<scope>provided</scope>
</dependency>
<!-- GSON -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
<!-- Guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>29.0-jre</version>
</dependency>
<!-- Reflections powered by google -->
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.10</version>
</dependency>
<!-- Commons Lang to Escape Input -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<!-- Google Html Compressor -->
<dependency>
<groupId>com.googlecode.htmlcompressor</groupId>
<artifactId>htmlcompressor</artifactId>
<version>1.5.2</version>
</dependency>
<!-- Apache Commons Codec for Encryption -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.13</version>
</dependency>
<!-- Apache Commons IO for Files -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
<!-- JodaTime for DateTime -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.4</version>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<groupId>com.samaxes.maven</groupId>
<artifactId>minify-maven-plugin</artifactId>
<version>1.7.4</version>
<executions>
<execution>
<id>minify</id>
<phase>process-resources</phase>
<goals>
<goal>minify</goal>
</goals>
<configuration>
<charset>utf-8</charset>
<webappSourceDir>${basedir}/src/main</webappSourceDir>
<webappTargetDir>${project.build.directory}</webappTargetDir>
<cssSourceDir>resources/jsmart</cssSourceDir>
<cssSourceFiles>
<cssSourceFile>bootstrap-3.3.7/css/bootstrap.css</cssSourceFile>
<cssSourceFile>bootstrap-datetime-4.14.30/css/bootstrap-datetimepicker.css
</cssSourceFile>
<cssSourceFile>webui-popover-1.2.0/css/jquery.webui-popover.css</cssSourceFile>
<cssSourceFile>css/jsmart.css</cssSourceFile>
</cssSourceFiles>
<cssTargetDir>classes/jsmart/css</cssTargetDir>
<cssFinalFile>jsmart.css</cssFinalFile>
<jsSourceDir>resources/jsmart</jsSourceDir>
<jsSourceFiles>
<jsSourceFile>jquery-1.12.4/jquery-1.12.4.js</jsSourceFile>
<jsSourceFile>jquery-form-3.51.0/jquery.form-3.51.0.js</jsSourceFile>
<jsSourceFile>momentjs-2.17.0/moment-with-locales.js</jsSourceFile>
<jsSourceFile>bootstrap-3.3.7/js/bootstrap.js</jsSourceFile>
<jsSourceFile>vanilla-masker-1.1.0/vanilla-masker-1.1.0.js</jsSourceFile>
<jsSourceFile>bootstrap-datetime-4.14.30/js/bootstrap-datetimepicker.js
</jsSourceFile>
<jsSourceFile>webui-popover-1.2.0/js/jquery.webui-popover.js</jsSourceFile>
<jsSourceFile>js/jsmart.js</jsSourceFile>
</jsSourceFiles>
<jsTargetDir>classes/jsmart/js</jsTargetDir>
<jsFinalFile>jsmart.js</jsFinalFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy file="${basedir}/src/main/resources/descriptors/release/jsmart_headers.json"
tofile="${basedir}/target/classes/jsmart_headers.json"/>
<copy file="${basedir}/src/main/resources/descriptors/release/jsmart_resources.json"
tofile="${basedir}/target/classes/jsmart_resources.json"/>
<copy file="${basedir}/src/main/resources/jsmart/bootstrap-3.3.7/css/bootstrap.css.map"
tofile="${basedir}/target/classes/jsmart/css/bootstrap.css.map"/>
<copydir src="${basedir}/src/main/resources/jsmart/bootstrap-3.3.7/fonts"
dest="${basedir}/target/classes/jsmart/fonts"/>
<delete dir="${basedir}/target/classes/descriptors"/>
<delete dir="${basedir}/target/classes/jsmart/bootstrap-3.3.7"/>
<delete dir="${basedir}/target/classes/jsmart/vanilla-masker-1.1.0"/>
<delete dir="${basedir}/target/classes/jsmart/bootstrap-datetime-4.14.30"/>
<delete dir="${basedir}/target/classes/jsmart/jquery-1.12.4"/>
<delete dir="${basedir}/target/classes/jsmart/jquery-form-3.51.0"/>
<delete dir="${basedir}/target/classes/jsmart/momentjs-2.17.0"/>
<delete dir="${basedir}/target/classes/jsmart/webui-popover-1.2.0"/>
<delete>
<fileset dir="${basedir}/target/classes/jsmart/css">
<exclude name="jsmart.min.css"/>
<exclude name="bootstrap.css.map"/>
</fileset>
</delete>
<delete>
<fileset dir="${basedir}/target/classes/jsmart/js">
<exclude name="jsmart.min.js"/>
</fileset>
</delete>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</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>2.7</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.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<useAgent>false</useAgent>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
<passphraseServerId>gpg.passphrase</passphraseServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>ossrh</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>