Andreas Sewe

Results 23 issues of Andreas Sewe

Not sure whether this should go into the 1.x line or be slated for 2.0, but I think `snapshotExpand` and `snapshotEnv` are not very flexible while being a bit on...

improvement

Using the `org.jetbrains.intellij`, version 0.4.22, running on Java 8, we get a `NoSuchFieldError: Companion`. Running the `publishPlugin` task ```bash ./gradlew :intellij:com.teamscale.ide.intellij:publishPlugin -PdeployUsername=… -PdeployToken=… -PzipFile=… ``` with ```groovy publishPlugin { if...

At the moment, there is no way for a `Module` to be closed properly, in order to release its resources. This is a problem at least for `JarFileModule`, as the...

I just noticed a false-positive `InvalidBytecodeException` while analyzing [`spring-core-3.2.16.RELEASE.jar`](http://search.maven.org/remotecontent?filepath=org/springframework/spring-core/3.2.16.RELEASE/spring-core-3.2.16.RELEASE.jar) with WALA 1.4.3. I get an `UnimplementedError` when getting the IR from `Lorg/springframework/asm/ClassReader. readConst(I[C)Ljava/lang/Object;`: Exception in thread "main" com.ibm.wala.util.debug.UnimplementedError at com.ibm.wala.util.debug.Assertions.UNREACHABLE(Assertions.java:46)...

I have a series of tests which are rather expensive to set up and build on each other. ATM, I use nested tests like so: ```java @DisplayName("An empty repository") class...

theme: programming model
status: team discussion
component: Jupiter

Granted, this is just a convenience feature, but having to manually specify a `` if the `` already has a `Main-Class` manifest attribute seems redundant. And yes, I realize that...

This may sometimes be necessary, e.g., when facing bugs in a repository manager like Nexus (cf. [NEXUS-34538](https://issues.sonatype.org/browse/NEXUS-34538)). Likely, [`target-platform-configuration`](https://www.eclipse.org/tycho/sitedocs/target-platform-configuration/target-platform-configuration-mojo.html) will need to learn a new option. (A global switch is...

When compiled, calls to `MethodHandle.invoke` and `MethodHandle.invokeExact` produce `invokevirtual`s with non-existing signatures (see the [compilation section in `MethodHandle` Javadoc](https://docs.oracle.com/javase/7/docs/api/java/lang/invoke/MethodHandle.html)). This causes false positives, i.e., animal-sniffer complains about an “undefined reference”...

Hi, when updating [this example](https://github.com/rombert/Maven-Recipe--RPM-Package/blob/master/pom.xml) to use the `rpm-maven-plugin` version 2.1.5 (besides changing the version from 2.0.1 to 2.1.5 this only requires setting `UTF-8`) I encounter the following error (under...

The `findbugs-maven-plugin` puts **itself** and its transitive dependencies on the classpath of the (forked) FindBugs execution. This prevents any FindBugs plugin from using, say, `commons-collection:commons-collection` in a version incompatible with...