e5951d46fc
Motivation: HTTP is a plaintext protocol which means that someone may be able to eavesdrop the data. To prevent this, HTTPS should be used whenever possible. However, maintaining using https:// in all URLs may be difficult. The nohttp tool can help here. The tool scans all the files in a repository and reports where http:// is used. Modifications: - Added nohttp (via checkstyle) into the build process. - Suppressed findings for the websites that don't support HTTPS or that are not reachable Result: - Prevent using HTTP in the future. - Encourage users to use HTTPS when they follow the links they found in the code.
52 lines
1.5 KiB
XML
52 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<assembly
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
|
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 https://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
|
<id>tarball</id>
|
|
<formats>
|
|
<format>tar.bz2</format>
|
|
</formats>
|
|
<includeBaseDirectory>true</includeBaseDirectory>
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>${project.basedir}/..</directory>
|
|
<outputDirectory/>
|
|
<includes>
|
|
<include>*.txt</include>
|
|
<include>*.md</include>
|
|
</includes>
|
|
</fileSet>
|
|
<fileSet>
|
|
<directory>${project.basedir}/..</directory>
|
|
<outputDirectory/>
|
|
<includes>
|
|
<include>license/**/*.txt</include>
|
|
<include>license/**/*.md</include>
|
|
</includes>
|
|
</fileSet>
|
|
<fileSet>
|
|
<directory>target/jars</directory>
|
|
<outputDirectory>jar</outputDirectory>
|
|
<includes>
|
|
<include>**/*.jar</include>
|
|
</includes>
|
|
</fileSet>
|
|
<fileSet>
|
|
<directory>target/jars-all</directory>
|
|
<outputDirectory>jar/all-in-one</outputDirectory>
|
|
<includes>
|
|
<include>**/*.jar</include>
|
|
</includes>
|
|
</fileSet>
|
|
<fileSet>
|
|
<directory>target/apidocs-all</directory>
|
|
<outputDirectory>javadoc</outputDirectory>
|
|
<includes>
|
|
<include>**/*.jar</include>
|
|
</includes>
|
|
</fileSet>
|
|
</fileSets>
|
|
</assembly>
|
|
|