| 组织ID: |
io.fabric8.archetypes |
| 项目ID: |
java-simple-mainclass-archetype |
| 版本: |
2.0.42 |
| 最后修改时间: |
2018-08-11 22:30:47 |
| 包类型: |
jar |
| 标题: |
Fabric8 :: Archetypes :: Quickstart : Simple main class |
| 描述: |
Creates a new Simple standalone Java Container (main class) |
| 大小: |
6.59KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>io.fabric8.archetypes</groupId>
<artifactId>java-simple-mainclass-archetype</artifactId>
<version>2.0.42</version>
</dependency>
|
| Gradle引入代码: |
io.fabric8.archetypes:java-simple-mainclass-archetype:2.0.42
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
Copyright 2005-2014 Red Hat, Inc.
Red Hat licenses this file to you 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.
--><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>
<parent>
<groupId>io.fabric8.archetypes</groupId>
<artifactId>archetypes</artifactId>
<version>2.0.42</version>
</parent>
<artifactId>java-simple-mainclass-archetype</artifactId>
<name>Fabric8 :: Archetypes :: Quickstart : Simple main class</name>
<packaging>maven-archetype</packaging>
<description>Creates a new Simple standalone Java Container (main class)</description>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>2.2</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</pluginManagement>
<!-- include all resources but only filter archetype-metadata.xml -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources-filtered</directory>
<filtering>true</filtering>
<includes>
<include>**/archetype-metadata.xml</include>
</includes>
</resource>
</resources>
</build>
</project>
|
| Jar包内容: |
archetype-resources/src/main/java/Main.java
archetype-resources/pom.xml
archetype-resources/README.md
archetype-resources/build-and-deploy.sh
archetype-resources/build-and-run.sh
archetype-resources/push.sh
META-INF/maven/archetype-metadata.xml
|
| 依赖Jar: |
无
|