You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Jukka Zitting (JIRA)" <ji...@apache.org> on 2006/04/28 22:01:37 UTC

[jira] Created: (JCR-418) .NET build scripts for Jackrabbit

.NET build scripts for Jackrabbit
---------------------------------

         Key: JCR-418
         URL: http://issues.apache.org/jira/browse/JCR-418
     Project: Jackrabbit
        Type: New Feature

    Reporter: Jukka Zitting
 Assigned to: Jukka Zitting 
    Priority: Minor


Hugo Burm has created build scripts that make it possible to run Jackrabbit under .NET. We should add the scripts and excample client code as a contrib project or integrate them with the Maven build system.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (JCR-418) .NET build scripts for Jackrabbit

Posted by "Jukka Zitting (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/JCR-418?page=all ]

Jukka Zitting resolved JCR-418.
-------------------------------

    Resolution: Fixed

Committed in revision 468981. Hopefully we can someday integrate the .NET build with the standard Maven build environment.

> .NET build scripts for Jackrabbit
> ---------------------------------
>
>                 Key: JCR-418
>                 URL: http://issues.apache.org/jira/browse/JCR-418
>             Project: Jackrabbit
>          Issue Type: New Feature
>            Reporter: Jukka Zitting
>         Assigned To: Jukka Zitting
>            Priority: Minor
>         Attachments: Jackrabbit-net.zip
>
>
> Hugo Burm has created build scripts that make it possible to run Jackrabbit under .NET. We should add the scripts and excample client code as a contrib project or integrate them with the Maven build system.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (JCR-418) .NET build scripts for Jackrabbit

Posted by "Jukka Zitting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JCR-418?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jukka Zitting closed JCR-418.
-----------------------------


> .NET build scripts for Jackrabbit
> ---------------------------------
>
>                 Key: JCR-418
>                 URL: https://issues.apache.org/jira/browse/JCR-418
>             Project: Jackrabbit
>          Issue Type: New Feature
>            Reporter: Jukka Zitting
>            Assignee: Jukka Zitting
>            Priority: Minor
>         Attachments: Jackrabbit-net.zip
>
>
> Hugo Burm has created build scripts that make it possible to run Jackrabbit under .NET. We should add the scripts and excample client code as a contrib project or integrate them with the Maven build system.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (JCR-418) .NET build scripts for Jackrabbit

Posted by "danjam (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/JCR-418?page=comments#action_12421545 ] 
            
danjam commented on JCR-418:
----------------------------

the scripts seem to be missing from the zip attachment
based on the readme they could be as follows:

xml.bat
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/xml-apis.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/serializer.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/resolver.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll -reference:resolver.dll -reference:xml-apis.dll lib/xercesImpl.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll -reference:xercesImpl.dll -reference:serializer.dll -reference:xml-apis.dll lib/xalan.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll -reference:xalan.dll lib/derby.jar
pause

jrc.bat
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/commons-collections-3.1.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/concurrent-1.3.4.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/geronimo-spec-jta-1.0-M1.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/jcr-1.0.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/log4j-1.2.8.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/lucene-1.4.3.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll -reference:log4j-1.2.8.dll lib/slf4j-log4j12-1.0.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll lib/xmlParserAPIs-2.0.2.jar
ikvmc -target:library -reference:IKVM.GNU.Classpath.dll -reference:xercesImpl.dll -reference:concurrent-1.3.4.dll -reference:xmlParserAPIs-2.0.2.dll -reference:geronimo-spec-jta-1.0-M1.dll -reference:xercesImpl.dll -reference:slf4j-log4j12-1.0.dll -reference:commons-collections-3.1.dll -reference:lucene-1.4.3.dll -reference:log4j-1.2.8.dll -reference:jcr-1.0.dll lib/jackrabbit-core-1.0.1.jar
pause

when using these though i am receiving the error:
internal error: invalid built-in node type definition stored in org/apache/jackrabbit/core/nodetype/builtin_nodetypes.xml
so i don't think the classes are 100% right. classloader issue??


> .NET build scripts for Jackrabbit
> ---------------------------------
>
>                 Key: JCR-418
>                 URL: http://issues.apache.org/jira/browse/JCR-418
>             Project: Jackrabbit
>          Issue Type: New Feature
>            Reporter: Jukka Zitting
>         Assigned To: Jukka Zitting
>            Priority: Minor
>         Attachments: Jackrabbit-net.zip
>
>
> Hugo Burm has created build scripts that make it possible to run Jackrabbit under .NET. We should add the scripts and excample client code as a contrib project or integrate them with the Maven build system.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (JCR-418) .NET build scripts for Jackrabbit

Posted by "Jukka Zitting (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/JCR-418?page=all ]

Jukka Zitting updated JCR-418:
------------------------------

    Attachment: Jackrabbit-net.zip

Attached the contribution sent privately by Hugo Burm. He agreed that I could file the contribution for him; see the included readme.txt file and the quote below for the license grant.

Hugo Burm:
> I packaged the whole thing but I am hesitating to enter this in Jira.
> So I am sending this directly to you. Sorry about that.
>
> I am from the .NET world and completely new to this Apache project.
> I have never used Jira.
> I am not familiar with the Apache coding standards and licensing issues.
> (that's not completely true, but that is a long story).
>
> I contribute this under the Apache 2.0 license.
> There is a readme.txt in the zip archive.


> .NET build scripts for Jackrabbit
> ---------------------------------
>
>          Key: JCR-418
>          URL: http://issues.apache.org/jira/browse/JCR-418
>      Project: Jackrabbit
>         Type: New Feature

>     Reporter: Jukka Zitting
>     Assignee: Jukka Zitting
>     Priority: Minor
>  Attachments: Jackrabbit-net.zip
>
> Hugo Burm has created build scripts that make it possible to run Jackrabbit under .NET. We should add the scripts and excample client code as a contrib project or integrate them with the Maven build system.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira