Skip to content

Commit 5083a28

Browse files
committed
Package update, fixes #82
1 parent 6e0fc32 commit 5083a28

File tree

279 files changed

+6038
-5880
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

279 files changed

+6038
-5880
lines changed

Kores-DSL/src/main/kotlin/com/github/jonathanxd/kores/dsl/Dsl.kt renamed to Kores-DSL/src/main/kotlin/com/koresframework/kores/dsl/Dsl.kt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
* THE SOFTWARE.
2727
*/
28-
package com.github.jonathanxd.kores.dsl
29-
30-
import com.github.jonathanxd.kores.*
31-
import com.github.jonathanxd.kores.base.*
32-
import com.github.jonathanxd.kores.base.Annotation
33-
import com.github.jonathanxd.kores.base.Retention
34-
import com.github.jonathanxd.kores.base.comment.*
35-
import com.github.jonathanxd.kores.common.DynamicMethodSpec
36-
import com.github.jonathanxd.kores.common.MethodInvokeHandleSpec
37-
import com.github.jonathanxd.kores.common.MethodInvokeSpec
38-
import com.github.jonathanxd.kores.common.MethodTypeSpec
39-
import com.github.jonathanxd.kores.generic.GenericSignature
40-
import com.github.jonathanxd.kores.literal.Literals
41-
import com.github.jonathanxd.kores.operator.Operator
42-
import com.github.jonathanxd.kores.type.*
28+
package com.koresframework.kores.dsl
29+
30+
import com.koresframework.kores.*
31+
import com.koresframework.kores.base.*
32+
import com.koresframework.kores.base.Annotation
33+
import com.koresframework.kores.base.Retention
34+
import com.koresframework.kores.base.comment.*
35+
import com.koresframework.kores.common.DynamicMethodSpec
36+
import com.koresframework.kores.common.MethodInvokeHandleSpec
37+
import com.koresframework.kores.common.MethodInvokeSpec
38+
import com.koresframework.kores.common.MethodTypeSpec
39+
import com.koresframework.kores.generic.GenericSignature
40+
import com.koresframework.kores.literal.Literals
41+
import com.koresframework.kores.operator.Operator
42+
import com.koresframework.kores.type.*
4343
import java.lang.reflect.Type
4444

4545
typealias Recv<T> = T.() -> Unit

Kores-DSL/src/main/kotlin/com/github/jonathanxd/kores/dsl/DslColl.kt renamed to Kores-DSL/src/main/kotlin/com/koresframework/kores/dsl/DslColl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
* THE SOFTWARE.
2727
*/
28-
package com.github.jonathanxd.kores.dsl
28+
package com.koresframework.kores.dsl
2929

3030
abstract class DslColl<E> {
3131
abstract val collection: MutableCollection<E>

Kores-DSL/src/test/kotlin/com/github/jonathanxd/kores/dsl/test/DslTest.kt renamed to Kores-DSL/src/test/kotlin/com/koresframework/kores/dsl/test/DslTest.kt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
* THE SOFTWARE.
2727
*/
28-
package com.github.jonathanxd.kores.dsl.test
28+
package com.koresframework.kores.dsl.test
2929

30-
import com.github.jonathanxd.kores.base.Access
31-
import com.github.jonathanxd.kores.base.FieldAccess
32-
import com.github.jonathanxd.kores.base.InvokeType
33-
import com.github.jonathanxd.kores.base.MethodInvocation
34-
import com.github.jonathanxd.kores.dsl.*
35-
import com.github.jonathanxd.kores.type.typeOf
30+
import com.koresframework.kores.base.Access
31+
import com.koresframework.kores.base.FieldAccess
32+
import com.koresframework.kores.base.InvokeType
33+
import com.koresframework.kores.base.MethodInvocation
34+
import com.koresframework.kores.dsl.*
35+
import com.koresframework.kores.type.typeOf
3636
import org.junit.Assert
3737
import org.junit.Test
3838
import java.io.PrintStream

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
}
2020

2121
group 'com.koresframework'
22-
version '4.1.11.base'
22+
version '4.2.0.base'
2323

2424
apply from: 'gradle/common.gradle'
2525

kdocs/-kores/package-list

Lines changed: 4102 additions & 4102 deletions
Large diffs are not rendered by default.

kdocs/index.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66

77
| Name |
88
|---|
9-
| [com.github.jonathanxd.kores](-kores/com.github.jonathanxd.kores/index.md) |
10-
| [com.github.jonathanxd.kores.annotation](-kores/com.github.jonathanxd.kores.annotation/index.md) |
11-
| [com.github.jonathanxd.kores.base](-kores/com.github.jonathanxd.kores.base/index.md) |
12-
| [com.github.jonathanxd.kores.base.comment](-kores/com.github.jonathanxd.kores.base.comment/index.md) |
13-
| [com.github.jonathanxd.kores.builder](-kores/com.github.jonathanxd.kores.builder/index.md) |
14-
| [com.github.jonathanxd.kores.common](-kores/com.github.jonathanxd.kores.common/index.md) |
15-
| [com.github.jonathanxd.kores.exception](-kores/com.github.jonathanxd.kores.exception/index.md) |
16-
| [com.github.jonathanxd.kores.factory](-kores/com.github.jonathanxd.kores.factory/index.md) |
17-
| [com.github.jonathanxd.kores.generic](-kores/com.github.jonathanxd.kores.generic/index.md) |
18-
| [com.github.jonathanxd.kores.helper](-kores/com.github.jonathanxd.kores.helper/index.md) |
19-
| [com.github.jonathanxd.kores.inspect](-kores/com.github.jonathanxd.kores.inspect/index.md) |
20-
| [com.github.jonathanxd.kores.literal](-kores/com.github.jonathanxd.kores.literal/index.md) |
21-
| [com.github.jonathanxd.kores.modify.visit](-kores/com.github.jonathanxd.kores.modify.visit/index.md) |
22-
| [com.github.jonathanxd.kores.operator](-kores/com.github.jonathanxd.kores.operator/index.md) |
23-
| [com.github.jonathanxd.kores.processor](-kores/com.github.jonathanxd.kores.processor/index.md) |
24-
| [com.github.jonathanxd.kores.serialization](-kores/com.github.jonathanxd.kores.serialization/index.md) |
25-
| [com.github.jonathanxd.kores.sugar](-kores/com.github.jonathanxd.kores.sugar/index.md) |
26-
| [com.github.jonathanxd.kores.type](-kores/com.github.jonathanxd.kores.type/index.md) |
27-
| [com.github.jonathanxd.kores.util](-kores/com.github.jonathanxd.kores.util/index.md) |
28-
| [com.github.jonathanxd.kores.util.conversion](-kores/com.github.jonathanxd.kores.util.conversion/index.md) |
9+
| [com.koresframework.kores](-kores/com.koresframework.kores/index.md) |
10+
| [com.koresframework.kores.annotation](-kores/com.koresframework.kores.annotation/index.md) |
11+
| [com.koresframework.kores.base](-kores/com.koresframework.kores.base/index.md) |
12+
| [com.koresframework.kores.base.comment](-kores/com.koresframework.kores.base.comment/index.md) |
13+
| [com.koresframework.kores.builder](-kores/com.koresframework.kores.builder/index.md) |
14+
| [com.koresframework.kores.common](-kores/com.koresframework.kores.common/index.md) |
15+
| [com.koresframework.kores.exception](-kores/com.koresframework.kores.exception/index.md) |
16+
| [com.koresframework.kores.factory](-kores/com.koresframework.kores.factory/index.md) |
17+
| [com.koresframework.kores.generic](-kores/com.koresframework.kores.generic/index.md) |
18+
| [com.koresframework.kores.helper](-kores/com.koresframework.kores.helper/index.md) |
19+
| [com.koresframework.kores.inspect](-kores/com.koresframework.kores.inspect/index.md) |
20+
| [com.koresframework.kores.literal](-kores/com.koresframework.kores.literal/index.md) |
21+
| [com.koresframework.kores.modify.visit](-kores/com.koresframework.kores.modify.visit/index.md) |
22+
| [com.koresframework.kores.operator](-kores/com.koresframework.kores.operator/index.md) |
23+
| [com.koresframework.kores.processor](-kores/com.koresframework.kores.processor/index.md) |
24+
| [com.koresframework.kores.serialization](-kores/com.koresframework.kores.serialization/index.md) |
25+
| [com.koresframework.kores.sugar](-kores/com.koresframework.kores.sugar/index.md) |
26+
| [com.koresframework.kores.type](-kores/com.koresframework.kores.type/index.md) |
27+
| [com.koresframework.kores.util](-kores/com.koresframework.kores.util/index.md) |
28+
| [com.koresframework.kores.util.conversion](-kores/com.koresframework.kores.util.conversion/index.md) |

src/main/kotlin/com/github/jonathanxd/kores/ArrayInstructions.kt renamed to src/main/kotlin/com/koresframework/kores/ArrayInstructions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
* THE SOFTWARE.
2727
*/
28-
package com.github.jonathanxd.kores
28+
package com.koresframework.kores
2929

3030
import kotlinx.serialization.Serializable
3131
import java.util.*

src/main/kotlin/com/github/jonathanxd/kores/Defaults.kt renamed to src/main/kotlin/com/koresframework/kores/Defaults.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
* THE SOFTWARE.
2727
*/
28-
package com.github.jonathanxd.kores
28+
package com.koresframework.kores
2929

30-
import com.github.jonathanxd.kores.base.Access
30+
import com.koresframework.kores.base.Access
3131

3232
/**
3333
* Common default constant base values

src/main/kotlin/com/github/jonathanxd/kores/Instruction.kt renamed to src/main/kotlin/com/koresframework/kores/Instruction.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
* THE SOFTWARE.
2727
*/
28-
package com.github.jonathanxd.kores
28+
package com.koresframework.kores
2929

30-
import com.github.jonathanxd.kores.base.InstructionWrapper
30+
import com.koresframework.kores.base.InstructionWrapper
3131

3232
/**
3333
* A source instruction.

src/main/kotlin/com/github/jonathanxd/kores/Instructions.kt renamed to src/main/kotlin/com/koresframework/kores/Instructions.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
* THE SOFTWARE.
2727
*/
28-
package com.github.jonathanxd.kores
28+
package com.koresframework.kores
2929

30-
import com.github.jonathanxd.kores.base.*
31-
import com.github.jonathanxd.kores.inspect.InstructionsInspect
32-
import com.github.jonathanxd.kores.type.`is`
33-
import com.github.jonathanxd.kores.type.getCommonSuperType
30+
import com.koresframework.kores.base.*
31+
import com.koresframework.kores.inspect.InstructionsInspect
32+
import com.koresframework.kores.type.`is`
33+
import com.koresframework.kores.type.getCommonSuperType
3434
import com.github.jonathanxd.iutils.container.primitivecontainers.BooleanContainer
3535
import kotlinx.serialization.Serializable
3636
import java.lang.reflect.Type

0 commit comments

Comments
 (0)