simplewebserver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.hibegin</groupId> <artifactId>simplewebserver</artifactId> <version>0.3.180</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> <groupId>com.hibegin</groupId> <artifactId>simplewebserver</artifactId> <version>0.3.180</version> <packaging>jar</packaging> <url>https://github.com/94fzb/simplewebserver</url> <name>SimpleWebServer</name> <description>Simple, flexible, less dependent, more extended. Less memory footprint, can quickly build Web project. Can quickly run embedded, Android devices </description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <freemarker.version>2.3.30</freemarker.version> <gson.version>2.10.1</gson.version> <maven.compiler.target>8</maven.compiler.target> <maven.compiler.source>8</maven.compiler.source> <java11.sourceDirectory>${project.basedir}/src/main/java11</java11.sourceDirectory> <java11.build.outputDirectory>${project.build.directory}/classes-java11</java11.build.outputDirectory> <maven.test.skip>true</maven.test.skip> </properties> <developers> <developer> <email>90xchun@gmail.com</email> <url>https://xiaochun.zrlog.com</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/94fzb/simplewebserver</connection> <developerConnection>scm:git:https://github.com/94fzb/simplewebserver</developerConnection> <url>https://github.com/94fzb/simplewebserver</url> <tag>simplewebserver-0.3.180</tag> </scm> <issueManagement> <system>Github Issue</system> <url>https://github.com/94fzb/simplewebserver</url> </issueManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>template/sf/index.html</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <executions> <execution> <id>default-compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <excludes> <exclude>module-info.java</exclude> </excludes> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </execution> <execution> <id>compile-module-info-java</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <source>11</source> <target>11</target> <includes> <include>module-info.java</include> </includes> <excludes> <exclude>**/com/hibegin/**</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>compile-java11</id> <phase>compile</phase> <configuration> <target> <mkdir dir="${java11.build.outputDirectory}" /> <javac srcdir="${java11.sourceDirectory}" destdir="${java11.build.outputDirectory}" classpath="${project.build.outputDirectory}" includeantruntime="false" source="11" target="11" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-resources</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}/META-INF/versions/11</outputDirectory> <resources> <resource> <directory>${java11.build.outputDirectory}</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <phase>deploy</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>deploy</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoDropAfterRelease>true</autoDropAfterRelease> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>4.0.0</version> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> </execution> <execution> <id>validate-the-git-infos</id> <goals> <goal>validateRevision</goal> </goals> <!-- *NOTE*: The default phase of validateRevision is verify, but in case you want to change it, you can do so by adding the phase here --> <phase>package</phase> </execution> </executions> <configuration> <!-- If you'd like to tell the plugin where your .git directory is, use this setting, otherwise we'll perform a search trying to figure out the right directory. It's better to add it explicitly IMHO. --> <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> <prefix>git</prefix> <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat> <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone> <verbose>false</verbose> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>${project.build.outputDirectory}/${project.name}-git.properties </generateGitPropertiesFilename> <format>properties</format> <skipPoms>true</skipPoms> <injectAllReactorProjects>false</injectAllReactorProjects> <failOnNoGitDirectory>true</failOnNoGitDirectory> <failOnUnableToExtractRepoInfo>true</failOnUnableToExtractRepoInfo> <skip>false</skip> <runOnlyOnce>false</runOnlyOnce> <offline>true</offline> <useNativeGit>true</useNativeGit> <abbrevLength>7</abbrevLength> <commitIdGenerationMode>flat</commitIdGenerationMode> <gitDescribe> <skip>false</skip> <always>false</always> <abbrev>7</abbrev> <dirty>-dirty</dirty> <match>*</match> <tags>false</tags> <forceLongFormat>false</forceLongFormat> </gitDescribe> <validationShouldFailIfNoMatch>true</validationShouldFailIfNoMatch> <evaluateOnCommit>HEAD</evaluateOnCommit> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>${freemarker.version}</version> <scope>provided</scope> </dependency> </dependencies> <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> </project>