How to include python compiler dependencies in maven web project?
I have a simple website that has some related python scripts that I use for maintenance of that website (note, t开发者_如何学Pythonhe python code are util scripts that we execute manually for various tasks). I need to be able to share it with other developers who may want to edit it.
What Maven dependencies do I need to include so that the python compiler is included at runtime and can be put on the build path?
I'm not sure I understood the question but Jython includes a compiler:
<dependency>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
<version>2.5.0</version>
</dependency>
精彩评论