2a7dc1cc0c
This scheme will be common for all compiler plugins with K1 and K2 support: - `plugin-common` contains classes shared with K1 and K2 implementations (if any) - `plugin-k1` contains implementation for K1 compiler - `plugin-k2` contains implementation for K2 compiler - `plugin-backend` contains implementation for backend extensions (if any) - `plugin-cli` is module for registration of plugin in CLI compiler - `plugin` is a root module with tests and all submodules embedded This structure is needed to distinguish parts related to different frontends, which is needed for proper dependencies settings for Kotlin IDE plugins
71 lines
1.8 KiB
Plaintext
Vendored
71 lines
1.8 KiB
Plaintext
Vendored
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class org/springframework/boot/test/context/SpringBootTest {
|
|
// source: 'springBootTest.kt'
|
|
}
|
|
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class org/springframework/cache/annotation/Cacheable {
|
|
// source: 'cacheable.kt'
|
|
}
|
|
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class org/springframework/scheduling/annotation/Async {
|
|
// source: 'async.kt'
|
|
}
|
|
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class org/springframework/stereotype/Component {
|
|
// source: 'component.kt'
|
|
}
|
|
|
|
@java.lang.annotation.Retention(value=RUNTIME)
|
|
@kotlin.Metadata
|
|
public annotation class org/springframework/transaction/annotation/Transactional {
|
|
// source: 'transactional.kt'
|
|
}
|
|
|
|
@kotlin.Metadata
|
|
public final class test/NoAnno {
|
|
// source: 'main.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@org.springframework.scheduling.annotation.Async
|
|
@kotlin.Metadata
|
|
public class test/TestAsync {
|
|
// source: 'main.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@org.springframework.cache.annotation.Cacheable
|
|
@kotlin.Metadata
|
|
public class test/TestCacheable {
|
|
// source: 'main.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@org.springframework.stereotype.Component
|
|
@kotlin.Metadata
|
|
public class test/TestComponent {
|
|
// source: 'main.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@org.springframework.boot.test.context.SpringBootTest
|
|
@kotlin.Metadata
|
|
public class test/TestSpringBootTest {
|
|
// source: 'main.kt'
|
|
public method <init>(): void
|
|
}
|
|
|
|
@org.springframework.transaction.annotation.Transactional
|
|
@kotlin.Metadata
|
|
public class test/TestTransactional {
|
|
// source: 'main.kt'
|
|
public method <init>(): void
|
|
}
|