First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
committed by Andreas Schaafsma
commit 6e1a5f9fe5
18475 changed files with 3309357 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{
"name": "UseCp",
"url" : "http://example.org",
"license": "GPL",
"tags": [],
"description": "This project use a deep class path.",
"version": "0.0.1",
"releasenote": "Initial release, everything is working correctly",
"classPath": "lib/src",
"contributors": ["Bar"]
}

View File

@@ -0,0 +1,9 @@
package bar;
class Bar {
static function new() {
trace("new Bar");
}
}

View File

@@ -0,0 +1,9 @@
package bar;
class Bar {
static function new() {
trace("new Bar");
}
}

View File

@@ -0,0 +1,10 @@
{
"name": "Bar",
"url" : "http://example.org",
"license": "GPL",
"tags": ["bar", "test"],
"description": "This project is an example of an haxelib project",
"version": "1.0.0",
"releasenote": "Initial release, everything is working correctly",
"contributors": ["Bar"]
}

View File

@@ -0,0 +1,7 @@
<project name="Bar" url="http://example.org" license="GPL">
<user name="Bar"/>
<tag v="bar"/>
<tag v="test"/>
<description>This project is an example of an haxelib project</description>
<version name="1.0.0">Initial release, everything is working correctly</version>
</project>

View File

@@ -0,0 +1,9 @@
package bar;
class Bar {
static function new() {
trace("new Bar");
}
}

View File

@@ -0,0 +1,10 @@
{
"name": "Bar",
"url" : "http://example.org",
"license": "MIT",
"tags": ["bar", "version2"],
"description": "This project is an example of an haxelib project",
"version": "2.0.0",
"releasenote": "Version 2.",
"contributors": ["Bar"]
}

View File

@@ -0,0 +1,7 @@
<project name="Bar" url="http://example.org" license="GPL">
<user name="Bar"/>
<tag v="bar"/>
<tag v="test"/>
<description>This project is an example of an haxelib project</description>
<version name="1.0.0">Initial release, everything is working correctly</version>
</project>

View File

@@ -0,0 +1,9 @@
package bar;
class Bar {
static function new() {
trace("new Bar");
}
}

View File

@@ -0,0 +1,10 @@
{
"name": "Deep",
"url" : "http://example.org",
"license": "Public",
"tags": ["deep", "test"],
"description": "This project's zip contains a folder that holds the lib.",
"version": "1.0.0",
"releasenote": "N/A",
"contributors": ["DeepAuthor", "AnotherGuy"]
}

View File

@@ -0,0 +1,9 @@
package foo;
class Foo {
public function new() {
trace("new Foo");
}
}

View File

@@ -0,0 +1,13 @@
{
"name": "Foo",
"url" : "http://example.org",
"license": "GPL",
"tags": ["foo", "test"],
"description": "This project is an example of an haxelib project",
"version": "0.1.0-alpha.0",
"releasenote": "Initial release, everything is working correctly",
"dependencies": {
"Bar": ""
},
"contributors": ["Foo"]
}

View File

@@ -0,0 +1,7 @@
<project name="Foo" url="http://example.org" license="GPL">
<user name="Foo"/>
<tag v="foo"/>
<tag v="test"/>
<description>This project is an example of an haxelib project</description>
<version name="1.0.0-alpha.0">Initial release, everything is working correctly</version>
</project>