ssl_certificate_exception
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.doppel-helix.netbeans.plugin.nb-ldap-explorer</groupId> <artifactId>ssl_certificate_exception</artifactId> <version>0.17</version> </dependency>
<!-- Copyright 2012 Matthias Bläsing. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. under the License. --> <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> <artifactId>nb-ldap-explorer-parent</artifactId> <groupId>eu.doppel-helix.netbeans.plugin.nb-ldap-explorer</groupId> <version>0.17</version> </parent> <groupId>eu.doppel-helix.netbeans.plugin.nb-ldap-explorer</groupId> <artifactId>ssl_certificate_exception</artifactId> <packaging>nbm</packaging> <version>0.17</version> <url>https://github.com/nb-ldap-explorer/nb-ldap-explorer</url> <name>SSL Certificate Exception</name> <description>Handle invalid certificates in SSL connections. This module is needed if connections with SSL endpoints providing self-signed/invalid certificates.</description> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <dependencies> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-api-annotations-common</artifactId> <version>${netbeans.platform}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-util</artifactId> <version>${netbeans.platform}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-filesystems</artifactId> <version>${netbeans.platform}</version> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-modules</artifactId> <version>${netbeans.platform}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.netbeans.utilities</groupId> <artifactId>nbm-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <codeNameBase>com.google.code.nb_ldap_explorer.ssl_certificate_exception/1</codeNameBase> <licenseName>Apache License, Version 2.0</licenseName> <licenseFile>src/main/resources/license.txt</licenseFile> <author>Matthias Bläsing</author> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> </plugin> </plugins> </build> <properties /> </project>