组织ID: |
com.github.mxab.thymeleaf.extras |
项目ID: |
thymeleaf-extras-data-attribute |
版本: |
1.1 |
最后修改时间: |
2019-10-24 03:42:16 |
包类型: |
jar |
标题: |
The Apache Software License, Version 2.0 |
描述: |
Thymeleaf Data Dialect that helps to easier write data-* attributes. Instead of th:attr="data-msg='#{my.msg}'" it is possible to do data:msg="#{my.msg}" |
大小: |
7.11KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.mxab.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-data-attribute</artifactId>
<version>1.1</version>
</dependency>
|
Gradle引入代码: |
com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute:1.1
|
下载Jar包: |
|
POM文件内容: |
<?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>
<groupId>com.github.mxab.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-data-attribute</artifactId>
<version>1.1</version>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<thymeleaf-version>2.0.15</thymeleaf-version>
<powermock.version>1.5</powermock.version>
</properties>
<dependencies>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>${thymeleaf-version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.7.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<developerConnection>scm:git:git@github.com:mxab/thymeleaf-extras-data-attribute.git</developerConnection>
<connection>scm:git:git://github.com/mxab/thymeleaf-extras-data-attribute.git</connection>
<url>https://github.com/mxab/thymeleaf-extras-data-attribute</url>
</scm>
<name>Thymeleaf Data Dialect</name>
<url>https://github.com/mxab/thymeleaf-extras-data-attribute</url>
<issueManagement>
<url>https://github.com/mxab/thymeleaf-extras-data-attribute/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<developers>
<developer>
<email>maxbruchmann@gmail.com</email>
<name>Max</name>
<id>max</id>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<passphrase>${gpg.passphrase}</passphrase>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<description>Thymeleaf Data Dialect that helps to easier write data-* attributes. Instead of th:attr="data-msg='#{my.msg}'" it is possible to do data:msg="#{my.msg}"</description>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.github.mxab.thymeleaf.extras.dataattribute.dialect.DataAttributeMatcher.class
com.github.mxab.thymeleaf.extras.dataattribute.dialect.DataAttributeDialect.class
com.github.mxab.thymeleaf.extras.dataattribute.dialect.DataProcessor.class
META-INF/maven/com.github.mxab.thymeleaf.extras/thymeleaf-extras-data-attribute/pom.xml
META-INF/maven/com.github.mxab.thymeleaf.extras/thymeleaf-extras-data-attribute/pom.properties
|
依赖Jar: |
thymeleaf-${thymeleaf-version}.jar
/org.thymeleaf/thymeleaf/${thymeleaf-version}
查看thymeleaf所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
hamcrest-all-1.3.jar
/org.hamcrest/hamcrest-all/1.3
查看hamcrest-all所有版本文件
jsoup-1.7.1.jar
/org.jsoup/jsoup/1.7.1
查看jsoup所有版本文件
powermock-module-junit4-${powermock.version}.jar
/org.powermock/powermock-module-junit4/${powermock.version}
查看powermock-module-junit4所有版本文件
powermock-api-mockito-${powermock.version}.jar
/org.powermock/powermock-api-mockito/${powermock.version}
查看powermock-api-mockito所有版本文件
|