Skip to content

Commit

Permalink
INSPECTIT-2059, INSPECTIT-2347, INSPECTIT-2460: Generic diagnosis rules
Browse files Browse the repository at this point in the history
Added Generic Rules and its tests.
  • Loading branch information
IsaVico authored and Ivan Senic committed Aug 1, 2017
1 parent a148751 commit 99413c4
Show file tree
Hide file tree
Showing 23 changed files with 3,177 additions and 63 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,3 +4,4 @@ version.log
.metadata/
.gradle/
build/
bin/
7 changes: 6 additions & 1 deletion dependencies.gradle
Expand Up @@ -227,7 +227,12 @@ dependencies {
'javax.activation:activation:1.1.1',
'javax.mail:mail:1.4'
)


/** inspectit.server.diagnosis */
serverDiagnosisProd (
'org.apache.commons:commons-math3:3.6.1'
)

serverTest (
'org.springframework:spring-test:3.2.4.RELEASE',
'com.bitmechanic:dumbster:1.9.0.2'
Expand Down
2 changes: 1 addition & 1 deletion inspectit.root.gradle
Expand Up @@ -373,7 +373,7 @@ subprojects {
}

// JMH tests only to projects that do have them
["inspectit.agent.java","inspectit.server"].each { n ->
["inspectit.agent.java","inspectit.server", "inspectit.server.diagnosis"].each { n ->
project(":$n") {
apply plugin: 'me.champeau.gradle.jmh'

Expand Down
5 changes: 5 additions & 0 deletions inspectit.server.diagnosis/.classpath
Expand Up @@ -10,6 +10,11 @@
<attribute name="FROM_GRADLE_MODEL" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src/jmh/java">
<attributes>
<attribute name="FROM_GRADLE_MODEL" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin"/>
Expand Down
Expand Up @@ -22,6 +22,7 @@ configurations {
}
testCompile {
extendsFrom configurations.serverDiagnosisTest
extendsFrom configurations.jmhbase
}
}

Expand Down

0 comments on commit 99413c4

Please sign in to comment.