| 组织ID: |
com.jfinal |
| 项目ID: |
jetty-server |
| 版本: |
2018.10 |
| 最后修改时间: |
2018-10-04 10:08:14 |
| 包类型: |
jar |
| 标题: |
jetty-server |
| 描述: |
jetty server |
| 相关URL: |
http://www.jfinal.com |
| 大小: |
20.81KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.jfinal</groupId>
<artifactId>jetty-server</artifactId>
<version>2018.10</version>
</dependency>
|
| Gradle引入代码: |
com.jfinal:jetty-server:2018.10
|
| 下载Jar包: |
|
| POM文件内容: |
<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>
<groupId>com.jfinal</groupId>
<artifactId>jetty-server</artifactId>
<packaging>jar</packaging>
<name>jetty-server</name>
<version>2018.10</version>
<url>http://www.jfinal.com</url>
<description>jetty server</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
</properties>
<issueManagement>
<system>Github Issue</system>
<url>https://gitee.com/jfinal/jetty-server/issues</url>
</issueManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>jfinal</id>
<name>James</name>
<email>jfinal@126.com</email>
<url>http://jfinal.com/user/1</url>
</developer>
</developers>
<scm>
<connection>scm:git:git@gitee.com:jfinal/jetty-server.git</connection>
<developerConnection>scm:git:git@gitee.com:jfinal/jetty-server.git</developerConnection>
<url>git@gitee.com:jfinal/jetty-server.git</url>
</scm>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<repositories>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<!-- <artifactId>jetty-server</artifactId> -->
<artifactId>jetty-webapp</artifactId>
<version>9.4.12.v20180830</version>
</dependency>
<dependency>
<groupId>com.jfinal</groupId>
<artifactId>jfinal</artifactId>
<version>3.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<!-- **/* 鍐欐硶锛屽彲浠ュ皢鍚勭骇瀛愮洰褰曚笅鐨勮祫婧愭枃浠惰鎵撳寘 -->
<include>**/*.jf</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<!-- 瑙e喅 java8 鍙戝竷鍒� maven 寮傚父 -->
<additionalparam>-Xdoclint:none</additionalparam>
<encoding>UTF-8</encoding>
<outputDirectory>${basedir}</outputDirectory>
<reportOutputDirectory>${basedir}</reportOutputDirectory>
</configuration>
</plugin>
<!-- 瀹夎婧愮爜鍒版湰鍦颁粨搴� -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.eclipse.jetty.util.log.StdErrLog.class
com.jfinal.server.jetty.JettyServer$1.class
com.jfinal.server.jetty.ServerFactory.class
com.jfinal.server.jetty.Scanner$1.class
com.jfinal.server.jetty.TimeSize.class
com.jfinal.server.jetty.JettyServer.class
com.jfinal.server.jetty.JFinalClassLoader.class
com.jfinal.server.jetty.Scanner.class
META-INF/maven/com.jfinal/jetty-server/pom.xml
META-INF/maven/com.jfinal/jetty-server/pom.properties
|
| 依赖Jar: |
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
jetty-server-9.4.12.v20180830.jar
/org.eclipse.jetty/jetty-server/9.4.12.v20180830
查看jetty-server所有版本文件
jfinal-3.5.jar
/com.jfinal/jfinal/3.5
查看jfinal所有版本文件
|