add some maven distribution management
This commit is contained in:
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
|
||||||
|
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
|
||||||
|
<mirrors>
|
||||||
|
<mirror>
|
||||||
|
<mirrorOf>*</mirrorOf>
|
||||||
|
<name>repo</name>
|
||||||
|
<url>http://repository.jetbrains.com/remote-repos</url>
|
||||||
|
<id>repo</id>
|
||||||
|
</mirror>
|
||||||
|
</mirrors>
|
||||||
|
|
||||||
|
<servers>
|
||||||
|
<server>
|
||||||
|
<id>jetbrains-kotlin-snapshots</id>
|
||||||
|
<username>tc-kotlin</username>
|
||||||
|
<password>${tc-kotlin.password}</password>
|
||||||
|
</server>
|
||||||
|
</servers>
|
||||||
|
</settings>
|
||||||
@@ -28,6 +28,23 @@
|
|||||||
<exec-maven-plugin.version>1.2.1</exec-maven-plugin.version>
|
<exec-maven-plugin.version>1.2.1</exec-maven-plugin.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<uniqueVersion>false</uniqueVersion>
|
||||||
|
<id>jetbrains-kotlin-release</id>
|
||||||
|
<name>jetbrains-kotlin-release</name>
|
||||||
|
<url>http://repository.jetbrains.com/kotlin-release</url>
|
||||||
|
<layout>default</layout>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<uniqueVersion>false</uniqueVersion>
|
||||||
|
<id>jetbrains-kotlin-snapshots</id>
|
||||||
|
<name>jetbrains-kotlin-snapshots</name>
|
||||||
|
<url>http://repository.jetbrains.com/kotlin-snapshots</url>
|
||||||
|
<layout>default</layout>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>tools</module>
|
<module>tools</module>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user