| 组织ID: |
com.google.code.javaparser |
| 项目ID: |
javaparser |
| 版本: |
1.0.8 |
| 最后修改时间: |
2018-07-28 16:16:06 |
| 包类型: |
jar |
| 标题: |
Java 1.5 Parser and AST |
| 描述: |
A Java 1.5 Parser with AST generation and visitor support. The AST records the source code structure, javadoc and comments. It is also possible to change the AST nodes or create new ones to modify the source code. |
| 相关URL: |
http://code.google.com/p/javaparser/ |
| 大小: |
234.98KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.google.code.javaparser</groupId>
<artifactId>javaparser</artifactId>
<version>1.0.8</version>
</dependency>
|
| Gradle引入代码: |
com.google.code.javaparser:javaparser:1.0.8
|
| 下载Jar包: |
|
| POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.code.javaparser</groupId>
<artifactId>javaparser</artifactId>
<packaging>jar</packaging>
<name>Java 1.5 Parser and AST</name>
<version>1.0.8</version>
<description>A Java 1.5 Parser with AST generation and visitor support. The AST records the source code structure, javadoc and comments. It is also possible to change the AST nodes or create new ones to modify the source code.</description>
<url>http://code.google.com/p/javaparser/</url>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/javaparser/issues/</url>
</issueManagement>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://code.google.com/p/javaparser/source/browse/</url>
<connection>http://javaparser.googlecode.com/svn/trunk/</connection>
</scm>
<inceptionYear>2007</inceptionYear>
<developers>
<developer>
<name>J煤lio Vilmar Gesser</name>
<email>jgesser@gmail.com</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Hendy Irawan</name>
<email>hendy@soluvas.com</email>
<url>http://www.HendyIrawan.com/</url>
<organization>Soluvas</organization>
<organizationUrl>http://www.Soluvas.com/</organizationUrl>
</contributor>
</contributors>
<!-- <distributionManagement> <site> <id>javaparser-site</id> <name>JavaParser</name>
<url>http://code.google.com/p/javaparser</url> </site> <downloadUrl>http://code.google.com/p/javaparser/downloads/</downloadUrl>
<repository> <id>javaparser-release</id> <name>JavaParser Maven Releases
Repository</name> <url>svn:https://javaparser.googlecode.com/svn/maven2</url>
</repository> <snapshotRepository> <id>javaparser-snapshots</id> <name>JavaParser
Maven Snapshots Repository</name> <url>svn:https://javaparser.googlecode.com/svn/maven2-snapshots</url>
</snapshotRepository> </distributionManagement> -->
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<outputDirectory>bin</outputDirectory>
<testOutputDirectory>bin-test</testOutputDirectory>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>1.9</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>ignore/**</exclude>
<exclude>**/*$*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
</resources>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>java.net.m2</id>
<url>http://download.java.net/maven/2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
japa.parser.ast.BlockComment.class
japa.parser.ast.body.AnnotationDeclaration.class
japa.parser.ast.body.AnnotationMemberDeclaration.class
japa.parser.ast.body.BodyDeclaration.class
japa.parser.ast.body.ClassOrInterfaceDeclaration.class
japa.parser.ast.body.ConstructorDeclaration.class
japa.parser.ast.body.EmptyMemberDeclaration.class
japa.parser.ast.body.EmptyTypeDeclaration.class
japa.parser.ast.body.EnumConstantDeclaration.class
japa.parser.ast.body.EnumDeclaration.class
japa.parser.ast.body.FieldDeclaration.class
japa.parser.ast.body.InitializerDeclaration.class
japa.parser.ast.body.JavadocComment.class
japa.parser.ast.body.MethodDeclaration.class
japa.parser.ast.body.ModifierSet.class
japa.parser.ast.body.Parameter.class
japa.parser.ast.body.TypeDeclaration.class
japa.parser.ast.body.VariableDeclarator.class
japa.parser.ast.body.VariableDeclaratorId.class
japa.parser.ast.Comment.class
japa.parser.ast.CompilationUnit.class
japa.parser.ast.expr.AnnotationExpr.class
japa.parser.ast.expr.ArrayAccessExpr.class
japa.parser.ast.expr.ArrayCreationExpr.class
japa.parser.ast.expr.ArrayInitializerExpr.class
japa.parser.ast.expr.AssignExpr$Operator.class
japa.parser.ast.expr.AssignExpr.class
japa.parser.ast.expr.BinaryExpr$Operator.class
japa.parser.ast.expr.BinaryExpr.class
japa.parser.ast.expr.BooleanLiteralExpr.class
japa.parser.ast.expr.CastExpr.class
japa.parser.ast.expr.CharLiteralExpr.class
japa.parser.ast.expr.ClassExpr.class
japa.parser.ast.expr.ConditionalExpr.class
japa.parser.ast.expr.DoubleLiteralExpr.class
japa.parser.ast.expr.EnclosedExpr.class
japa.parser.ast.expr.Expression.class
japa.parser.ast.expr.FieldAccessExpr.class
japa.parser.ast.expr.InstanceOfExpr.class
japa.parser.ast.expr.IntegerLiteralExpr.class
japa.parser.ast.expr.IntegerLiteralMinValueExpr.class
japa.parser.ast.expr.LiteralExpr.class
japa.parser.ast.expr.LongLiteralExpr.class
japa.parser.ast.expr.LongLiteralMinValueExpr.class
japa.parser.ast.expr.MarkerAnnotationExpr.class
japa.parser.ast.expr.MemberValuePair.class
japa.parser.ast.expr.MethodCallExpr.class
japa.parser.ast.expr.NameExpr.class
japa.parser.ast.expr.NormalAnnotationExpr.class
japa.parser.ast.expr.NullLiteralExpr.class
japa.parser.ast.expr.ObjectCreationExpr.class
japa.parser.ast.expr.QualifiedNameExpr.class
japa.parser.ast.expr.SingleMemberAnnotationExpr.class
japa.parser.ast.expr.StringLiteralExpr.class
japa.parser.ast.expr.SuperExpr.class
japa.parser.ast.expr.ThisExpr.class
japa.parser.ast.expr.UnaryExpr$Operator.class
japa.parser.ast.expr.UnaryExpr.class
japa.parser.ast.expr.VariableDeclarationExpr.class
japa.parser.ast.ImportDeclaration.class
japa.parser.ast.LineComment.class
japa.parser.ast.Node.class
japa.parser.ast.PackageDeclaration.class
japa.parser.ast.stmt.AssertStmt.class
japa.parser.ast.stmt.BlockStmt.class
japa.parser.ast.stmt.BreakStmt.class
japa.parser.ast.stmt.CatchClause.class
japa.parser.ast.stmt.ContinueStmt.class
japa.parser.ast.stmt.DoStmt.class
japa.parser.ast.stmt.EmptyStmt.class
japa.parser.ast.stmt.ExplicitConstructorInvocationStmt.class
japa.parser.ast.stmt.ExpressionStmt.class
japa.parser.ast.stmt.ForeachStmt.class
japa.parser.ast.stmt.ForStmt.class
japa.parser.ast.stmt.IfStmt.class
japa.parser.ast.stmt.LabeledStmt.class
japa.parser.ast.stmt.ReturnStmt.class
japa.parser.ast.stmt.Statement.class
japa.parser.ast.stmt.SwitchEntryStmt.class
japa.parser.ast.stmt.SwitchStmt.class
japa.parser.ast.stmt.SynchronizedStmt.class
japa.parser.ast.stmt.ThrowStmt.class
japa.parser.ast.stmt.TryStmt.class
japa.parser.ast.stmt.TypeDeclarationStmt.class
japa.parser.ast.stmt.WhileStmt.class
japa.parser.ast.type.ClassOrInterfaceType.class
japa.parser.ast.type.PrimitiveType$Primitive.class
japa.parser.ast.type.PrimitiveType.class
japa.parser.ast.type.ReferenceType.class
japa.parser.ast.type.Type.class
japa.parser.ast.type.VoidType.class
japa.parser.ast.type.WildcardType.class
japa.parser.ast.TypeParameter.class
japa.parser.ast.visitor.DumpVisitor$1.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
junit-4.8.1.jar
/junit/junit/4.8.1
查看junit所有版本文件
|