javafx-webview-debugger
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.vladsch.javafx-webview-debugger</groupId>
<artifactId>javafx-webview-debugger</artifactId>
<version>0.8.6</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--
<parent>
<groupId>com.vladsch.pom</groupId>
<artifactId>central-pom</artifactId>
<version>0.3.0</version>
</parent>
-->
<groupId>com.vladsch.javafx-webview-debugger</groupId>
<artifactId>javafx-webview-debugger</artifactId>
<version>0.8.6</version>
<name>Javafx WebView Debugger</name>
<description>
Full function debugging implementation for JavaFX WebView using Chrome Dev Tools via web-socket server
</description>
<url>https://github.com/vsch/Javafx-WebView-Debugger</url>
<dependencies>
<dependency>
<groupId>com.vladsch.boxed-json</groupId>
<artifactId>boxed-json</artifactId>
<version>0.5.32</version>
</dependency>
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.3.7</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>15.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<licenses>
<license>
<name>MIT license</name>
<url>http://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Vladimir Schneider</name>
<email>vladimir@vladsch.com</email>
<organization>vladsch.com</organization>
<organizationUrl>https://vladsch.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:vsch/Javafx-WebView-Debugger.git</connection>
<developerConnection>scm:git:git@github.com:vsch/Javafx-WebView-Debugger.git</developerConnection>
<url>git@github.com:vsch/Javafx-WebView-Debugger</url>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javafx.webview.debugger.javadoc.location>${project.basedir}/target/apidocs/</javafx.webview.debugger.javadoc.location>
<!-- Don't automatically publish artifacts to Central, we might want to inspect them first. -->
<nexus.staging.autoRelease>false</nexus.staging.autoRelease>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.3</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>package-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>package-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
</configuration>
<executions>
<execution>
<id>deploy-to-sonatype</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
<!--
<goal>release</goal>
-->
</goals>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames/>
<!– The offline links make links from extensions to core work. –>
<detectOfflineLinks>false</detectOfflineLinks>
<offlineLinks>
<offlineLink>
<url>http://static.javadoc.io/com.vladsch.flexmark/flexmark/${project.version}/</url>
<location>${flexmark.javadoc.location}</location>
</offlineLink>
</offlineLinks>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<!– There's lots of potential for things to go wrong when publishing to Central, so
don't push the tag and master automatically (which happens before publishing). Also
requires "localCheckout" for release:perform to work. –>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
-->
</plugins>
</build>
</project>