mirror of
https://github.com/google/guice.git
synced 2024-04-21 12:32:36 +00:00
82 lines
3.0 KiB
XML
82 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright (c) 2022 Google, Inc. All rights reserved.
|
|
|
|
This program is licensed to you under the Apache License Version 2.0,
|
|
and you may not use this file except in compliance with the Apache License Version 2.0.
|
|
You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the Apache License Version 2.0 is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
|
|
-->
|
|
|
|
<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>org.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>7</version>
|
|
</parent>
|
|
|
|
<name>{artifact_name}</name>
|
|
<groupId>{artifact_group_id}</groupId>
|
|
<artifactId>{artifact_id}</artifactId>
|
|
<version>{pom_version}</version>
|
|
<packaging>{packaging}</packaging>
|
|
|
|
|
|
<description>
|
|
Guice is a lightweight dependency injection framework for Java 8 and above
|
|
</description>
|
|
|
|
<url>https://github.com/google/guice</url>
|
|
<inceptionYear>2006</inceptionYear>
|
|
|
|
<organization>
|
|
<name>Google, Inc.</name>
|
|
<url>http://www.google.com</url>
|
|
</organization>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>Guice Users List</name>
|
|
<archive>http://groups.google.com/group/google-guice/topics</archive>
|
|
<subscribe>http://groups.google.com/group/google-guice/subscribe</subscribe>
|
|
<unsubscribe>http://groups.google.com/group/google-guice/subscribe</unsubscribe>
|
|
<post>http://groups.google.com/group/google-guice/post</post>
|
|
</mailingList>
|
|
<mailingList>
|
|
<name>Guice Developers List</name>
|
|
<archive>http://groups.google.com/group/google-guice-dev/topics</archive>
|
|
<subscribe>http://groups.google.com/group/google-guice-dev/subscribe</subscribe>
|
|
<unsubscribe>http://groups.google.com/group/google-guice-dev/subscribe</unsubscribe>
|
|
<post>http://groups.google.com/group/google-guice-dev/post</post>
|
|
</mailingList>
|
|
</mailingLists>
|
|
|
|
<scm>
|
|
<connection>scm:git:git://github.com/google/guice.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/google/guice.git</developerConnection>
|
|
<url>https://github.com/google/guice</url>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>Github</system>
|
|
<url>https://github.com/google/guice/issues/</url>
|
|
</issueManagement>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<dependencies>
|
|
{generated_bzl_deps}
|
|
</dependencies>
|
|
</project> |