-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,35 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
<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>io.tokhn</groupId> | ||
<artifactId>proto</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
|
||
<name>Tokhn proto</name> | ||
<url>tokhn.io</url> | ||
<description>This project contains the proto file used by Tokhn to enable gRPC and protocol buffers to generate stubs in your language of choice. This project is currently only focused on Java stubs.</description> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Matt Liotta</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<url>https://github.com/mliotta/tokhn</url> | ||
<connection>scm:git:https://github.com/mliotta/tokhn.git</connection> | ||
<developerConnection>scm:git:https://github.com/mliotta/tokhn.git</developerConnection> | ||
</scm> | ||
|
||
<build> | ||
<extensions> | ||
<extension> | ||
|
@@ -73,6 +99,4 @@ | |
<version>1.10.0</version> | ||
</dependency> | ||
</dependencies> | ||
<name>Tokhn proto</name> | ||
<url>tokhn.io</url> | ||
</project> |