Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
beginnings of optimizer
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Jul 21, 2018
1 parent f9c1cd2 commit e22a062
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
21 changes: 11 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ allprojects {
}

buildscript {
ext.kotlin_version = '1.2.50'
ext.kotlin_version = '1.2.51'
ext.dokka_version = '0.9.15'
ext.ktor_version = '0.9.3'

Expand All @@ -30,12 +30,12 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0'
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.1.10'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.3.0'
}
}

group 'io.kweb'
version '0.3.2'
version '0.3.3'

apply plugin: 'java'

Expand Down Expand Up @@ -76,7 +76,7 @@ configurations {

configurations.all {
resolutionStrategy {
force 'org.jetbrains.kotlinx:kotlinx-coroutines-io:0.21-alpha-2'
force 'org.jetbrains.kotlinx:kotlinx-coroutines-io:0.23.4'
}
}

Expand Down Expand Up @@ -104,16 +104,16 @@ configurations {
dependencies {
compile 'com.github.salomonbrys.kotson:kotson:2.3.0'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'commons-io', name: 'commons-io', version: '2.6'

//////////////////////////////
// Kotlin library dependencies
//////////////////////////////
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.21-alpha-2'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:0.21-alpha-2'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.4'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:0.23.4'

// TODO: This should be testCompile
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.+'
Expand All @@ -134,15 +134,16 @@ dependencies {
exclude group : 'ch.qos.logback', module : 'logback-classic'
}

compile('io.mola.galimatias:galimatias:0.2.0')
compile('io.mola.galimatias:galimatias:0.2.1')

compile 'io.github.microutils:kotlin-logging:1.4.9'
compile 'io.github.microutils:kotlin-logging:1.5.4'
compile("org.reflections:reflections:0.9.11")

compile 'com.github.kwebio:shoebox:0.2.18'

compile 'com.github.yamamotoj:cached-property-kotlin:0.1.0'


///////////////////////////
// Dependencies for testing
///////////////////////////
Expand Down Expand Up @@ -212,4 +213,4 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
2 changes: 2 additions & 0 deletions src/main/kotlin/io/kweb/dom/style/style.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package io.kweb.dom.style

0 comments on commit e22a062

Please sign in to comment.