alertifyjs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.webjars</groupId>
<artifactId>alertifyjs</artifactId>
<version>1.13.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<packaging>jar</packaging>
<groupId>org.webjars</groupId>
<artifactId>alertifyjs</artifactId>
<version>1.13.1</version>
<name>AlertifyJS</name>
<description>WebJar for AlertifyJS - a javascript framework for developing browser dialogs and notifications</description>
<url>https://webjars.org</url>
<developers>
<developer>
<id>dheid</id>
<name>Daniel Heid</name>
<email>mail@daniel-heid.de</email>
</developer>
</developers>
<licenses>
<license>
<name>GNU General Public License v3.0</name>
<url>https://github.com/MohammadYounes/AlertifyJS/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/webjars/alertifyjs</url>
<connection>scm:git:https://github.com/webjars/alertifyjs.git</connection>
<developerConnection>scm:git:https://github.com/webjars/alertifyjs.git</developerConnection>
<tag>alertifyjs-1.13.1</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.jamesward</groupId>
<artifactId>unsnapshot-maven-plugin</artifactId>
<version>0.3</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>unsnapshot</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<get src="https://github.com/MohammadYounes/AlertifyJS/archive/refs/tags/${version.unsnapshot}.zip" dest="${project.build.directory}/${project.artifactId}.zip" />
<unzip src="${project.build.directory}/${project.artifactId}.zip" dest="${project.build.directory}" />
<move todir="${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${version.unsnapshot}">
<fileset dir="${project.build.directory}/AlertifyJS-${version.unsnapshot}/build">
<exclude name="alertifyjs.zip" />
</fileset>
</move>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>