Andy Seaborne
Andy Seaborne
Apache Jena produces modules using automatic module names. What do you use the test artifacts for? The tests do not run without the data files which are not in the...
`requires org.apache.jena.core;` -- the test jar is `org.apache.jena.core.test` and it only needs to eb on the test time classpath,module aren't needed (I don't know how put modules on the model...
It can't see any use of ModelTestBase other than it inherits from junit.framework.TestCase and has a `@Test` so is that necessary? Personally - I'd remove the `extends` and see what...
> Strange, isn'it? It is modulepath related. No modules - test code on the classpath. Putting reusable test framework in test jars isn't great and may not play with modules...
I am very sorry to have overlooked this. This is for `fuseki-server.jar`? No - `/$/status` and `/$/sleep` don't exist in 5.3.0 or 5.4.0. (They may be in WAR file.) I'll...
Release 5.2.0 is approaching. I have a discussion point https://github.com/apache/jena/issues/2753#issuecomment-2397485241 which is about whether this feature now will fit into future possible changes and some code comments here. Would you...
https://github.com/Sveino/Inst4CIM-KG/issues/137 > SHACLC allows Turtle content Not true.
See https://w3c.github.io/shacl/shacl-compact-syntax/#grammar-section SHACL-C does not include [Non-Validating Property Shape Characteristics](https://www.w3.org/TR/shacl/#nonValidation). Lets's see what the SHACL 1.2 Working Group produces. It may be the the current SHACL-C is not suited to...
Discussion on the direction of `jena-shacl` on #2852.
It seems to work -- possibly because the example default file is setting the `credentialsMatcher`. ``` [main] plainMatcher=org.apache.shiro.authc.credential.SimpleCredentialsMatcher iniRealm.credentialsMatcher = $plainMatcher [users] user99=password99 [urls] /** = authcBasic,user[user99] ``` It would...