Add kotlin 1.1.3 to prebuilts

Change-Id: I76a038ce8ee6cc87b3f71f5000b0852690ee16b0
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/_remote.repositories
new file mode 100644
index 0000000..7568521
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:52:09 PDT 2017
+kotlin-android-extensions-1.1.3.jar>central=
+kotlin-android-extensions-1.1.3.pom>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.jar b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.jar
new file mode 100644
index 0000000..dfd5797
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.jar.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.jar.sha1
new file mode 100644
index 0000000..9b6a413
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.jar.sha1
@@ -0,0 +1 @@
+d3c19734b15eefb0a55f33bb762dbd96ea5dbc57
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.pom
new file mode 100644
index 0000000..c4d5176
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.pom
@@ -0,0 +1,127 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+    <modelVersion>4.0.0</modelVersion>
+    <properties>
+        <maven-plugin-anno.version>1.4.1</maven-plugin-anno.version>
+        <maven.version>3.0.4</maven.version>
+        <android-extensions.src>${basedir}/../../../plugins/android-extensions/android-extensions-compiler/src</android-extensions.src>
+        <android-extensions.target-src>${basedir}/target/src</android-extensions.target-src>
+        <android-extensions.target-resource>${basedir}/target/resource</android-extensions.target-resource>
+    </properties>
+
+    <parent>
+        <groupId>org.jetbrains.kotlin</groupId>
+        <artifactId>kotlin-project</artifactId>
+        <version>1.1.3</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>kotlin-android-extensions</artifactId>
+    <packaging>jar</packaging>
+
+    <description>Android compiler plugin for Kotlin</description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jetbrains.kotlin</groupId>
+            <artifactId>kotlin-compiler-embeddable</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <sourceDirectory>${android-extensions.target-src}</sourceDirectory>
+        <resources>
+            <resource>
+                <directory>${android-extensions.target-resource}</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>3.0.0</version>
+                <executions>
+                    <execution>
+                        <id>copy-sources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${android-extensions.target-src}</outputDirectory>
+                            <resources>
+                                <resource><directory>${android-extensions.src}</directory></resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${android-extensions.target-resource}/META-INF</outputDirectory>
+                            <resources>
+                                <resource><directory>${android-extensions.src}/META-INF</directory></resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>com.google.code.maven-replacer-plugin</groupId>
+                <artifactId>replacer</artifactId>
+                <version>1.5.3</version>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>replace</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <includes>
+                        <include>${android-extensions.target-src}/**</include>
+                    </includes>
+                    <replacements>
+                        <replacement>
+                            <token>(?&lt;!\.)com\.intellij</token>
+                            <value>org.jetbrains.kotlin.com.intellij</value>
+                        </replacement>
+                    </replacements>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>kotlin-maven-plugin</artifactId>
+                <groupId>org.jetbrains.kotlin</groupId>
+                <version>${project.version}</version>
+
+                <executions>
+                    <execution>
+                        <id>compile</id>
+                        <phase>compile</phase>
+                        <goals> <goal>compile</goal> </goals>
+                        <configuration>
+                            <sourceDirs>
+                                <sourceDir>${android-extensions.target-src}</sourceDir>
+                            </sourceDirs>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <repositories>
+        <repository>
+            <id>jetbrains-utils</id>
+            <url>http://repository.jetbrains.com/utils</url>
+        </repository>
+    </repositories>
+</project>
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.pom.sha1
new file mode 100644
index 0000000..b770828
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.1.3/kotlin-android-extensions-1.1.3.pom.sha1
@@ -0,0 +1 @@
+14f4bd0efd8651807ed0f8d9d962a54a779a1913
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/_remote.repositories
new file mode 100644
index 0000000..a7ec5ea
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:52:09 PDT 2017
+kotlin-annotation-processing-1.1.3.jar>central=
+kotlin-annotation-processing-1.1.3.pom>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.jar b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.jar
new file mode 100644
index 0000000..bc2d4dc
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.jar.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.jar.sha1
new file mode 100644
index 0000000..21f4be6
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.jar.sha1
@@ -0,0 +1 @@
+a12ba36f9a93bbe93f44ae0dbbd57cd015cf89cf
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.pom
new file mode 100644
index 0000000..252e8f0
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.pom
@@ -0,0 +1,204 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+    <modelVersion>4.0.0</modelVersion>
+    <properties>
+        <maven.version>3.0.4</maven.version>
+        <old-kapt.src>${basedir}/src/main/kotlin</old-kapt.src>
+        <annotation-processing.src>${basedir}/../../../plugins/kapt3/src</annotation-processing.src>
+        <annotation-processing.target-src>${basedir}/target/src/main/kotlin</annotation-processing.target-src>
+        <annotation-processing.target-src-test>${basedir}/target/src/test/kotlin</annotation-processing.target-src-test>
+        <annotation-processing.target-resource>${basedir}/target/resource</annotation-processing.target-resource>
+    </properties>
+
+    <parent>
+        <groupId>org.jetbrains.kotlin</groupId>
+        <artifactId>kotlin-project</artifactId>
+        <version>1.1.3</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>kotlin-annotation-processing</artifactId>
+    <packaging>jar</packaging>
+
+    <description>Annotation Processor wrapper for Kotlin</description>
+
+    <repositories>
+        <repository>
+            <id>jetbrains-utils</id>
+            <url>http://repository.jetbrains.com/utils</url>
+        </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jetbrains.kotlin</groupId>
+            <artifactId>kotlin-stdlib</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.jetbrains.kotlin</groupId>
+            <artifactId>kotlin-compiler-embeddable</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jetbrains.kotlin</groupId>
+            <artifactId>gradle-api</artifactId>
+            <version>1.6</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.android.tools.build</groupId>
+            <artifactId>gradle</artifactId>
+            <version>1.1.0</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <sourceDirectory>${annotation-processing.target-src}</sourceDirectory>
+        <testSourceDirectory>${annotation-processing.target-src-test}</testSourceDirectory>
+        <resources>
+            <resource>
+                <directory>${annotation-processing.target-resource}</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>3.0.0</version>
+                <executions>
+                    <execution>
+                        <id>copy-sources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${annotation-processing.target-src}</outputDirectory>
+                            <resources>
+                                <resource><directory>${annotation-processing.src}</directory></resource>
+                                <resource><directory>${old-kapt.src}</directory></resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${annotation-processing.target-resource}/META-INF</outputDirectory>
+                            <resources>
+                                <resource><directory>${annotation-processing.src}/META-INF</directory></resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>com.google.code.maven-replacer-plugin</groupId>
+                <artifactId>replacer</artifactId>
+                <version>1.5.3</version>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>replace</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <includes>
+                        <include>${annotation-processing.target-src}/**</include>
+                    </includes>
+                    <replacements>
+                        <replacement>
+                            <token>(?&lt;!\.)com\.intellij</token>
+                            <value>org.jetbrains.kotlin.com.intellij</value>
+                        </replacement>
+                    </replacements>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>kotlin-maven-plugin</artifactId>
+                <groupId>org.jetbrains.kotlin</groupId>
+                <version>${project.version}</version>
+                <configuration>
+                    <jdkHome>${env.JDK_18}</jdkHome>
+                    <annotationPaths>
+                        <annotationPath>${basedir}/kotlinAnnotation</annotationPath>
+                    </annotationPaths>
+                </configuration>
+
+                <executions>
+                    <execution>
+                        <id>compile</id>
+                        <phase>compile</phase>
+                        <goals> <goal>compile</goal> </goals>
+                        <configuration>
+                            <sourceDirs>
+                                <sourceDir>${annotation-processing.target-src}</sourceDir>
+                            </sourceDirs>
+                        </configuration>
+                    </execution>
+
+                    <execution>
+                        <id>test-compile</id>
+                        <phase>test-compile</phase>
+                        <goals> <goal>test-compile</goal> </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.6</source>
+                    <target>1.6</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-failsafe-plugin</artifactId>
+                <version>2.6</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>integration-test</goal>
+                            <goal>verify</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>tools_jar_profile</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+                <file>
+                    <exists>kotlin-annotation-processing-maven-build.txt</exists>
+                </file>
+            </activation>
+            <properties>
+                <toolsjar>${env.JDK_18}/lib/tools.jar</toolsjar>
+            </properties>
+            <dependencies>
+                <dependency>
+                    <groupId>com.sun</groupId>
+                    <artifactId>tools</artifactId>
+                    <version>1.8.0</version>
+                    <scope>system</scope>
+                    <systemPath>${toolsjar}</systemPath>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+</project>
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.pom.sha1
new file mode 100644
index 0000000..f0116b9
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3/kotlin-annotation-processing-1.1.3.pom.sha1
@@ -0,0 +1 @@
+347ad52b4758964caa3c86ab8f1c5dc2025d8e21
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/_remote.repositories
new file mode 100644
index 0000000..c79d211
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:52:11 PDT 2017
+kotlin-compiler-embeddable-1.1.3.jar>central=
+kotlin-compiler-embeddable-1.1.3.pom>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.jar b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.jar
new file mode 100644
index 0000000..b3dcc82
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.jar.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.jar.sha1
new file mode 100644
index 0000000..ec22ca2
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.jar.sha1
@@ -0,0 +1 @@
+a3032d880deda7a7b9308797a7279c9b263c3209
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.pom
new file mode 100644
index 0000000..3461046
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.pom
@@ -0,0 +1,166 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+  <parent>
+    <artifactId>kotlin-project</artifactId>
+    <groupId>org.jetbrains.kotlin</groupId>
+    <version>1.1.3</version>
+    <relativePath>../../../pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>kotlin-compiler-embeddable</artifactId>
+  <description>the Kotlin compiler embeddable</description>
+  <build>
+    <testSourceDirectory>test/kotlin</testSourceDirectory>
+    <plugins>
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>generate-sources-for-shade-plugin</id>
+            <phase>package</phase>
+            <goals>
+              <goal>jar-no-fork</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <version>3.0.0</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
+              <shadedArtifactAttached>false</shadedArtifactAttached>
+              <createDependencyReducedPom>true</createDependencyReducedPom>
+              <createSourcesJar>true</createSourcesJar>
+              <filters>
+                <filter>
+                  <artifact>*:kotlin-compiler</artifact>
+                  <excludes>
+                    <exclude>com/sun/jna/**</exclude>
+                    <exclude>net/rubygrapefruit/**</exclude>
+                  </excludes>
+                </filter>
+              </filters>
+              <relocations>
+                <relocation>
+                  <pattern>com.intellij</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.com.intellij</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>com.google</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.com.google</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>org.apache</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.org.apache</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>org.jdom</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.org.jdom</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>org.fusesource</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.org.fusesource</shadedPattern>
+                  <excludes>
+                    <exclude>org.fusesource.jansi.internal.CLibrary</exclude>
+                  </excludes>
+                </relocation>
+                <relocation>
+                  <pattern>org.picocontainer</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.org.picocontainer</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>jline</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.jline</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>gnu</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.gnu</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>javax.inject</pattern>
+                  <shadedPattern>${kotlin.relocated.package}.javax.inject</shadedPattern>
+                </relocation>
+              </relocations>
+              <transformers>
+                <transformer />
+              </transformers>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.jetbrains.kotlin</groupId>
+        <artifactId>kotlin-maven-plugin</artifactId>
+        <version>${project.version}</version>
+        <executions>
+          <execution>
+            <id>test-compile</id>
+            <phase>integration-test</phase>
+            <goals>
+              <goal>test-compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>${surefire-version}</version>
+        <executions>
+          <execution>
+            <id>integration-test</id>
+            <phase>integration-test</phase>
+            <goals>
+              <goal>test</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <workingDirectory>${project.build.directory}</workingDirectory>
+          <systemPropertyVariables>
+            <compilerJar>${project.artifactId}-${project.parent.version}.jar</compilerJar>
+          </systemPropertyVariables>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-test-junit</artifactId>
+      <version>1.1.3</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>kotlin-test</artifactId>
+          <groupId>org.jetbrains.kotlin</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>hamcrest-core</artifactId>
+          <groupId>org.hamcrest</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+  <properties>
+    <kotlin.relocated.package>org.jetbrains.kotlin</kotlin.relocated.package>
+    <maven-plugin-anno.version>1.4.1</maven-plugin-anno.version>
+    <maven.version>3.0.4</maven.version>
+    <surefire-version>2.16</surefire-version>
+  </properties>
+</project>
+
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.pom.sha1
new file mode 100644
index 0000000..d8e9115
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.1.3/kotlin-compiler-embeddable-1.1.3.pom.sha1
@@ -0,0 +1 @@
+bf9164de0832a7366b86a75b3a4ed7edfaa27f7f
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/_remote.repositories
new file mode 100644
index 0000000..9d4fc43
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:52:08 PDT 2017
+kotlin-compiler-runner-1.1.3.pom>central=
+kotlin-compiler-runner-1.1.3.jar>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.jar b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.jar
new file mode 100644
index 0000000..eea56d1
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.jar.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.jar.sha1
new file mode 100644
index 0000000..84949a7
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.jar.sha1
@@ -0,0 +1 @@
+fad868962f9eda09aa04910104d7c793911d6948
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.pom
new file mode 100644
index 0000000..7291088
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.pom
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+    <modelVersion>4.0.0</modelVersion>
+    <properties>
+        <maven-plugin-anno.version>1.4.1</maven-plugin-anno.version>
+        <maven.version>3.0.4</maven.version>
+        <daemon-client.target-src>${basedir}/target/src/main/kotlin</daemon-client.target-src>
+    </properties>
+
+    <parent>
+        <groupId>org.jetbrains.kotlin</groupId>
+        <artifactId>kotlin-project</artifactId>
+        <version>1.1.3</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>kotlin-compiler-runner</artifactId>
+    <packaging>jar</packaging>
+
+    <description>Compiler runner + daemon client</description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jetbrains.kotlin</groupId>
+            <artifactId>kotlin-compiler-embeddable</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <sourceDirectory>${daemon-client.target-src}</sourceDirectory>
+
+        <plugins>
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>3.0.0</version>
+                <executions>
+                    <execution>
+                        <id>copy-sources</id>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${daemon-client.target-src}</outputDirectory>
+                            <resources>
+                                <resource><directory>${project-root}/compiler/daemon/daemon-client/src</directory></resource>
+                                <resource><directory>${project-root}/compiler/compiler-runner/src</directory></resource>
+                            </resources>
+                            <overwrite>true</overwrite>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>com.google.code.maven-replacer-plugin</groupId>
+                <artifactId>replacer</artifactId>
+                <version>1.5.3</version>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>replace</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <includes>
+                        <include>${daemon-client.target-src}/**</include>
+                    </includes>
+                    <replacements>
+                        <replacement>
+                            <token>(?&lt;!\.)com\.intellij</token>
+                            <value>org.jetbrains.kotlin.com.intellij</value>
+                        </replacement>
+                    </replacements>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>kotlin-maven-plugin</artifactId>
+                <groupId>org.jetbrains.kotlin</groupId>
+                <version>${project.version}</version>
+
+                <executions>
+                    <execution>
+                        <id>compile</id>
+                        <phase>compile</phase>
+                        <goals> <goal>compile</goal> </goals>
+                        <configuration>
+                            <sourceDirs>
+                                <sourceDir>${daemon-client.target-src}</sourceDir>
+                            </sourceDirs>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.pom.sha1
new file mode 100644
index 0000000..589614a
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-runner/1.1.3/kotlin-compiler-runner-1.1.3.pom.sha1
@@ -0,0 +1 @@
+dd3d32720e7a47469ac763325b294b8760ca0a91
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/_remote.repositories
new file mode 100644
index 0000000..ecca213
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:52:08 PDT 2017
+kotlin-gradle-plugin-api-1.1.3.pom>central=
+kotlin-gradle-plugin-api-1.1.3.jar>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.jar b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.jar
new file mode 100644
index 0000000..f0afef2
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.jar.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.jar.sha1
new file mode 100644
index 0000000..db4c455
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.jar.sha1
@@ -0,0 +1 @@
+a3bbe7482069bdbb39a64a798bf60c225d9f37eb
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.pom
new file mode 100644
index 0000000..fedb3ba
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.pom
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jetbrains.kotlin</groupId>
+  <artifactId>kotlin-gradle-plugin-api</artifactId>
+  <version>1.1.3</version>
+  <name>org.jetbrains.kotlin:kotlin-gradle-plugin-api</name>
+  <description>null</description>
+  <url>https://kotlinlang.org/</url>
+  <licenses>
+    <license>
+      <name>The Apache License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>Kotlin Team</name>
+      <organization>JetBrains</organization>
+      <organizationUrl>https://www.jetbrains.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/JetBrains/kotlin.git</connection>
+    <developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
+    <url>https://github.com/JetBrains/kotlin</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-stdlib</artifactId>
+      <version>1.1.3</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.pom.sha1
new file mode 100644
index 0000000..5c638fb
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.1.3/kotlin-gradle-plugin-api-1.1.3.pom.sha1
@@ -0,0 +1 @@
+e646e9908843a5e100e51ac031a8d33afe072bee
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/_remote.repositories
new file mode 100644
index 0000000..3c089c1
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:52:09 PDT 2017
+kotlin-gradle-plugin-1.1.3.jar>central=
+kotlin-gradle-plugin-1.1.3.pom>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.jar b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.jar
new file mode 100644
index 0000000..4b93cc6
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.jar.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.jar.sha1
new file mode 100644
index 0000000..14593ff
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.jar.sha1
@@ -0,0 +1 @@
+a14a0efb6470e6fa18dce82592db47ad21701c6a
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.pom
new file mode 100644
index 0000000..f5f7a8c
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.pom
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jetbrains.kotlin</groupId>
+  <artifactId>kotlin-gradle-plugin</artifactId>
+  <version>1.1.3</version>
+  <name>org.jetbrains.kotlin:kotlin-gradle-plugin</name>
+  <description>null</description>
+  <url>https://kotlinlang.org/</url>
+  <licenses>
+    <license>
+      <name>The Apache License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>Kotlin Team</name>
+      <organization>JetBrains</organization>
+      <organizationUrl>https://www.jetbrains.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/JetBrains/kotlin.git</connection>
+    <developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
+    <url>https://github.com/JetBrains/kotlin</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-gradle-plugin-api</artifactId>
+      <version>1.1.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-stdlib</artifactId>
+      <version>1.1.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-android-extensions</artifactId>
+      <version>1.1.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-compiler-embeddable</artifactId>
+      <version>1.1.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-compiler-runner</artifactId>
+      <version>1.1.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-annotation-processing</artifactId>
+      <version>1.1.3</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.4</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.4</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-build-common-test</artifactId>
+      <version>1.1.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-test-junit</artifactId>
+      <version>1.1.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.12</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.pom.sha1
new file mode 100644
index 0000000..20ce32b
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin/1.1.3/kotlin-gradle-plugin-1.1.3.pom.sha1
@@ -0,0 +1 @@
+298872cae4a28c3e3e507abfd09d2b5ae16d0777
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/_remote.repositories
new file mode 100644
index 0000000..6b0af7c
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/_remote.repositories
@@ -0,0 +1,3 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:52:07 PDT 2017
+kotlin-project-1.1.3.pom>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/kotlin-project-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/kotlin-project-1.1.3.pom
new file mode 100644
index 0000000..728ffc2
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/kotlin-project-1.1.3.pom
@@ -0,0 +1,289 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+        xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.jetbrains.kotlin</groupId>
+    <artifactId>kotlin-project</artifactId>
+    <version>1.1.3</version>
+    <packaging>pom</packaging>
+
+    <name>Kotlin</name>
+    <description>Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript</description>
+    <url>http://kotlinlang.org/</url>
+
+    <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>
+            <comments>A business-friendly OSS license</comments>
+        </license>
+    </licenses>
+
+    <scm>
+        <url>https://github.com/JetBrains/kotlin</url>
+        <connection>scm:git:https://github.com/JetBrains/kotlin.git</connection>
+        <developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
+    </scm>
+
+    <developers>
+        <developer>
+            <id>JetBrains</id>
+            <name>JetBrains Team</name>
+            <organization>JetBrains</organization>
+            <organizationUrl>http://www.jetbrains.com</organizationUrl>
+        </developer>
+    </developers>
+
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <project-root>../../..</project-root>
+
+        <junit-version>4.11</junit-version>
+        <pegdown.version>1.1.0</pegdown.version>
+        <surefire-version>2.16</surefire-version>
+        <exec-maven-plugin.version>1.2.1</exec-maven-plugin.version>
+        <selenium.version>2.52.0</selenium.version>
+        <htmlunit.version>2.24</htmlunit.version>
+
+        <kotlin-dist>${project-root}/dist</kotlin-dist>
+        <kotlin-sdk>${kotlin-dist}/kotlinc</kotlin-sdk>
+        <kotlin.compiler.jdkHome>${env.JDK_18}</kotlin.compiler.jdkHome>
+
+        <kotlin.language.version>1.1</kotlin.language.version>
+
+        <maven.compiler.source>1.6</maven.compiler.source>
+        <maven.compiler.target>1.6</maven.compiler.target>
+    </properties>
+
+    <prerequisites>
+        <maven>3.0.2</maven>
+    </prerequisites>
+
+    <distributionManagement>
+        <repository>
+            <id>${deploy-repo}</id>
+            <url>${deploy-url}</url>
+        </repository>
+        <snapshotRepository>
+            <id>sonatype-nexus-staging</id>
+            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
+        </snapshotRepository>
+    </distributionManagement>
+
+    <modules>
+        <module>tools/kotlin-compiler</module>
+        <module>tools/kotlin-compiler-embeddable</module>
+        <module>tools/kotlin-compiler-client-embeddable</module>
+        <module>tools/kotlin-compiler-client-embeddable-test</module>
+        <module>tools/native-platform</module>
+        <module>tools/kotlin-compiler-runner</module>
+        <module>tools/kotlin-daemon-client</module>
+        <module>tools/kotlin-build-common-test</module>
+        <module>tools/kotlin-maven-plugin</module>
+
+        <module>tools/kotlin-osgi-bundle</module>
+
+        <module>tools/maven-archetypes</module>
+
+
+        <module>tools/idl2k</module>
+        <module>tools/kotlin-annotation-processing</module>
+        <module>tools/kotlin-annotation-processing-maven</module>
+        <module>tools/kotlin-maven-allopen</module>
+        <module>tools/kotlin-maven-noarg</module>
+        <module>tools/kotlin-sam-with-receiver-compiler-plugin</module>
+        <module>tools/kotlin-source-sections-compiler-plugin</module>
+
+        <module>tools/kotlin-script-util</module>
+        <module>tools/kotlin-android-extensions</module>
+        <module>tools/kotlin-maven-plugin-test</module>
+
+        <module>examples/annotation-processor-example</module>
+        <module>examples/kotlin-java-example</module>
+        <module>examples/js-example</module>
+        <module>examples/kotlin-js-library-example</module>
+        <module>examples/browser-example</module>
+        <module>examples/browser-example-with-library</module>
+        <module>examples/kotlin-jsr223-local-example</module>
+        <module>examples/kotlin-jsr223-daemon-local-eval-example</module>
+
+        <!-- <module>tools/kotlin-allopen</module> -->
+        <!-- <module>tools/kotlin-noarg</module> -->
+        <!-- <module>tools/kotlin-gradle-plugin</module> -->
+        <!-- <module>tools/kotlin-gradle-plugin-api</module> -->
+        <!-- <module>examples/kotlin-gradle-subplugin-example</module> -->
+        <!-- <module>tools/kotlin-gradle-plugin-integration-tests</module> -->
+    </modules>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>${junit-version}</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <version>2.3.2</version>
+                    <configuration>
+                        <source>${maven.compiler.source}</source>
+                        <target>${maven.compiler.target}</target>
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-source-plugin</artifactId>
+                    <version>2.1.2</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <version>2.9</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-deploy-plugin</artifactId>
+                    <version>2.7</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>build-helper-maven-plugin</artifactId>
+                    <version>1.7</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-jar-plugin</artifactId>
+                    <version>2.6</version>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+
+        <plugins>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>${surefire-version}</version>
+                <configuration>
+                    <forkMode>once</forkMode>
+                    <jvm>${env.JDK_16}/bin/java</jvm>
+                    <useSystemClassLoader>false</useSystemClassLoader>
+                    <useManifestOnlyJar>false</useManifestOnlyJar>
+                    <failIfNoTests>false</failIfNoTests>
+                    <includes>
+                        <include>**/*Test.*</include>
+                    </includes>
+                    <excludes>
+                    </excludes>
+                    <systemProperties>
+                        <project.version>${project.version}</project.version>
+                    </systemProperties>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <configuration>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <id>attach-sources</id>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-empty-javadoc</id>
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>attach-artifact</goal>
+                        </goals>
+                        <configuration>
+                            <artifacts>
+                                <artifact>
+                                    <file>${highest-basedir}/lib/empty-javadoc.jar</file>
+                                    <type>jar</type>
+                                    <classifier>javadoc</classifier>
+                                </artifact>
+                            </artifacts>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.commonjava.maven.plugins</groupId>
+                <artifactId>directory-maven-plugin</artifactId>
+                <version>0.1</version>
+                <executions>
+                    <execution>
+                        <id>directories</id>
+                        <goals>
+                            <goal>highest-basedir</goal>
+                        </goals>
+                        <phase>initialize</phase>
+                        <configuration>
+                            <property>highest-basedir</property>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <profiles>
+        <profile>
+            <id>sign-artifacts</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <version>1.4</version>
+                        <configuration>
+                            <passphrase>${kotlin.key.passphrase}</passphrase>
+                            <keyname>${kotlin.key.name}</keyname>
+                            <homedir>${highest-basedir}/.gnupg</homedir>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>sign-artifacts</id>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/kotlin-project-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/kotlin-project-1.1.3.pom.sha1
new file mode 100644
index 0000000..7f36c0a
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-project/1.1.3/kotlin-project-1.1.3.pom.sha1
@@ -0,0 +1 @@
+c4aced4d6c8681e31bcad899d519adc2240762fa
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/_remote.repositories b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/_remote.repositories
new file mode 100644
index 0000000..787d884
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/_remote.repositories
@@ -0,0 +1,4 @@
+#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
+#Wed Jul 19 16:46:26 PDT 2017
+kotlin-stdlib-1.1.3.jar>central=
+kotlin-stdlib-1.1.3.pom>central=
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.jar b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.jar
new file mode 100644
index 0000000..cd58770
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.jar
Binary files differ
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.jar.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.jar.sha1
new file mode 100644
index 0000000..102c4c5
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.jar.sha1
@@ -0,0 +1 @@
+e51ebc59da5103a2052859e89682c7f9c3456298
\ No newline at end of file
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.pom b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.pom
new file mode 100644
index 0000000..6b048da
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.pom
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jetbrains.kotlin</groupId>
+  <artifactId>kotlin-stdlib</artifactId>
+  <version>1.1.3</version>
+  <name>org.jetbrains.kotlin:kotlin-stdlib</name>
+  <description>Kotlin Standard Library</description>
+  <url>https://kotlinlang.org/</url>
+  <licenses>
+    <license>
+      <name>The Apache License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <name>Kotlin Team</name>
+      <organization>JetBrains</organization>
+      <organizationUrl>https://www.jetbrains.com</organizationUrl>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git:https://github.com/JetBrains/kotlin.git</connection>
+    <developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
+    <url>https://github.com/JetBrains/kotlin</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.jetbrains</groupId>
+      <artifactId>annotations</artifactId>
+      <version>13.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains.kotlin</groupId>
+      <artifactId>kotlin-test-junit</artifactId>
+      <version>1.1.3</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.pom.sha1 b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.pom.sha1
new file mode 100644
index 0000000..ddfad4e
--- /dev/null
+++ b/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/kotlin-stdlib-1.1.3.pom.sha1
@@ -0,0 +1 @@
+92828201c19a4676465245b627dfff3f300fa428
\ No newline at end of file