diff --git a/libraries/stdlib/pom.xml b/libraries/stdlib/pom.xml index 39c70b84248..6eca2f5aa98 100644 --- a/libraries/stdlib/pom.xml +++ b/libraries/stdlib/pom.xml @@ -40,7 +40,7 @@ compile - compile + process-sources compile diff --git a/libraries/stdlib/src/kotlin/ArraysKt.java b/libraries/stdlib/src/kotlin/ArraysKt.java new file mode 100644 index 00000000000..9b19d48b13b --- /dev/null +++ b/libraries/stdlib/src/kotlin/ArraysKt.java @@ -0,0 +1,7 @@ +package kotlin; + +@java.lang.Deprecated +@kotlin.Deprecated(message = "Use kotlin.collections.ArraysKt instead") +public class ArraysKt extends kotlin.collections.ArraysKt { +} + diff --git a/libraries/stdlib/src/kotlin/CharsKt.java b/libraries/stdlib/src/kotlin/CharsKt.java new file mode 100644 index 00000000000..99bd5175be5 --- /dev/null +++ b/libraries/stdlib/src/kotlin/CharsKt.java @@ -0,0 +1,22 @@ +/* + * Copyright 2010-2015 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package kotlin; + +@java.lang.Deprecated +@Deprecated(message = "Use kotlin.text.CharsKt instead") +public class CharsKt extends kotlin.text.CharsKt { +} diff --git a/libraries/stdlib/src/kotlin/CollectionsKt.java b/libraries/stdlib/src/kotlin/CollectionsKt.java new file mode 100644 index 00000000000..39c44232917 --- /dev/null +++ b/libraries/stdlib/src/kotlin/CollectionsKt.java @@ -0,0 +1,6 @@ +package kotlin; + +@java.lang.Deprecated +@kotlin.Deprecated(message = "Use kotlin.collections.CollectionsKt instead") +public class CollectionsKt extends kotlin.collections.CollectionsKt { +} diff --git a/libraries/stdlib/src/kotlin/MapsKt.java b/libraries/stdlib/src/kotlin/MapsKt.java new file mode 100644 index 00000000000..3f2d38c79ad --- /dev/null +++ b/libraries/stdlib/src/kotlin/MapsKt.java @@ -0,0 +1,22 @@ +/* + * Copyright 2010-2015 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package kotlin; + +@java.lang.Deprecated +@Deprecated(message = "Use kotlin.collections.MapsKt instead") +public class MapsKt extends kotlin.collections.MapsKt { +} diff --git a/libraries/stdlib/src/kotlin/RangesKt.java b/libraries/stdlib/src/kotlin/RangesKt.java new file mode 100644 index 00000000000..3a2ebdb3757 --- /dev/null +++ b/libraries/stdlib/src/kotlin/RangesKt.java @@ -0,0 +1,22 @@ +/* + * Copyright 2010-2015 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package kotlin; + +@java.lang.Deprecated +@Deprecated(message = "Use kotlin.ranges.RangesKt instead") +public class RangesKt extends kotlin.ranges.RangesKt { +} diff --git a/libraries/stdlib/src/kotlin/SequencesKt.java b/libraries/stdlib/src/kotlin/SequencesKt.java new file mode 100644 index 00000000000..52833d5bb5c --- /dev/null +++ b/libraries/stdlib/src/kotlin/SequencesKt.java @@ -0,0 +1,22 @@ +/* + * Copyright 2010-2015 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package kotlin; + +@java.lang.Deprecated +@Deprecated(message = "Use kotlin.sequences.SequencesKt instead") +public class SequencesKt extends kotlin.sequences.SequencesKt { +} diff --git a/libraries/stdlib/src/kotlin/SetsKt.java b/libraries/stdlib/src/kotlin/SetsKt.java new file mode 100644 index 00000000000..1c783d0097f --- /dev/null +++ b/libraries/stdlib/src/kotlin/SetsKt.java @@ -0,0 +1,22 @@ +/* + * Copyright 2010-2015 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package kotlin; + +@java.lang.Deprecated +@Deprecated(message = "Use kotlin.collections.SetsKt instead") +public class SetsKt extends kotlin.collections.SetsKt { +} diff --git a/libraries/stdlib/src/kotlin/StringsKt.java b/libraries/stdlib/src/kotlin/StringsKt.java new file mode 100644 index 00000000000..5b3ff5e8b60 --- /dev/null +++ b/libraries/stdlib/src/kotlin/StringsKt.java @@ -0,0 +1,22 @@ +/* + * Copyright 2010-2015 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package kotlin; + +@java.lang.Deprecated +@Deprecated(message = "Use kotlin.text.StringsKt instead") +public class StringsKt extends kotlin.text.StringsKt { +}